[issue4350] Remove dead code from Tkinter.py

2014-07-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7e6beea0eeab by Serhiy Storchaka in branch 'default': Issue #22061: Restored empty obsolete methods removed in issue #4350 and http://hg.python.org/cpython/rev/7e6beea0eeab -- ___ Python tracker

[issue4350] Remove dead code from Tkinter.py

2014-07-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 549a7615abe3 by Serhiy Storchaka in branch 'default': Issue #4350: Removed a number of out-of-dated and non-working for a long time http://hg.python.org/cpython/rev/549a7615abe3 -- nosy: +python-dev ___

[issue4350] Remove dead code from Tkinter.py

2014-07-23 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- resolution: - fixed stage: commit review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4350 ___

[issue4350] Remove dead code from Tkinter.py

2014-06-02 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- versions: +Python 3.5 -Python 3.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4350 ___ ___

[issue4350] Remove dead code from Tkinter.py

2014-06-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Patch is synchronized with tip. It also removes Studbutton and Tributton classes which depend on removed methods. These classes are not documented, not tested and never worked in supported Python versions. I even not found reasonable links in Google, except

[issue4350] Remove dead code from Tkinter.py

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- nosy: -BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4350 ___ ___

[issue4350] Remove dead code from Tkinter.py

2013-10-31 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- assignee: - serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4350 ___ ___

[issue4350] Remove dead code from Tkinter.py

2013-01-11 Thread Georg Brandl
Georg Brandl added the comment: This kind of change is very similar to other cleanup changes, so the classification of not a bug fix seems valid. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4350

[issue4350] Remove dead code from Tkinter.py

2013-01-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- stage: patch review - commit review type: behavior - enhancement versions: -Python 2.7, Python 3.2, Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4350

[issue4350] Remove dead code from Tkinter.py

2013-01-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- components: +Tkinter ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4350 ___ ___

[issue4350] Remove dead code from Tkinter.py

2013-01-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. However I am not sure should this issue be classified as behavior or enhancement. Removed code is not usable in Tk versions which supported in Python 2.7 and 3.2+ and can be removed safely. -- nosy: +georg.brandl, serhiy.storchaka versions:

[issue4350] Remove dead code from Tkinter.py

2011-03-06 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: If we consider the meaning of dead code as that used in compilers, then I meant out of date code. If you want to add support for tk::ButtonEnter then I believe you should open a new issue and raise your points there. Anyway, have you read

[issue4350] Remove dead code from Tkinter.py

2011-02-24 Thread Graham Horler
Graham Horler tryexc...@gmail.com added the comment: Are we sure this is dead code, and not just out of date? e.g. this works, and I use it in production with if Tkinter.TkVersion = 8.4: b = Tkinter.Button(root) b.tk.call('tk::ButtonEnter', b._w) -- nosy: +pysquared

[issue4350] Remove dead code from Tkinter.py

2010-08-04 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Ther title says it all, can we commit this? -- nosy: +BreamoreBoy stage: - patch review type: - behavior versions: +Python 3.1, Python 3.2 -Python 3.0 ___ Python tracker

[issue4350] Remove dead code from Tkinter.py

2008-11-18 Thread Guilherme Polo
New submission from Guilherme Polo [EMAIL PROTECTED]: There are some methods (which call tk commands) that no longer exist, for a long time now so this patch remove them. There are also these indices functions, which do not belong to the module space and now are gone too. -- files: