[issue27031] Remove interface to obsolete Tk commands

2016-05-16 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue27031] Remove interface to obsolete Tk commands

2016-05-16 Thread Roundup Robot
Roundup Robot added the comment: 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 -- nosy: +python-dev ___ Py

[issue27031] Remove interface to obsolete Tk commands

2016-05-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: Since the deprecation notice said 'will be removed in 3.6', go ahead ;-). -- nosy: +terry.reedy ___ Python tracker ___ _

[issue27031] Remove interface to obsolete Tk commands

2016-05-15 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: 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. -- compone