This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Remove interface to obsolete Tk commands
Type: enhancement Stage: resolved
Components: Library (Lib), Tkinter Versions: Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: python-dev, serhiy.storchaka, terry.reedy
Priority: normal Keywords: patch

Created on 2016-05-15 18:53 by serhiy.storchaka, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
tkinter_remove_deprecated.patch serhiy.storchaka, 2016-05-15 18:53 review
Messages (3)
msg265642 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-05-15 18:53
Proposed patch removes the tk_menuBar() and tk_bindForTraversal() dummy methods in Tkinter widget classes. Previously these methods called commands that were obsolete since Tk 4.0. The deprecation was added in all branches in issue22061.
msg265713 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2016-05-16 17:19
Since the deprecation notice said 'will be removed in 3.6', go ahead ;-).
msg265729 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-05-16 19:36
New changeset 774367d21bf3 by Serhiy Storchaka in branch 'default':
Issue #27031: Removed dummy methods in Tkinter widget classes: tk_menuBar()
https://hg.python.org/cpython/rev/774367d21bf3
History
Date User Action Args
2022-04-11 14:58:31adminsetgithub: 71218
2016-05-16 19:36:55serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2016-05-16 19:36:06python-devsetnosy: + python-dev
messages: + msg265729
2016-05-16 17:19:58terry.reedysetnosy: + terry.reedy
messages: + msg265713
2016-05-15 18:53:11serhiy.storchakacreate