[issue15303] Minor revision to the BaseWidget._setup method in Tkinter

2014-01-09 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- priority: normal - low ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15303 ___ ___

[issue15303] Minor revision to the BaseWidget._setup method in Tkinter

2012-12-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch against 3.4 which contains proposed OP change and a lot of similar changes in different places. I'm not sure that this should be considered as a bug fix and not as an enhancement. Drew, as a workaround you can implement __bool__() method

[issue15303] Minor revision to the BaseWidget._setup method in Tkinter

2012-11-09 Thread Ezio Melotti
Ezio Melotti added the comment: Can you provide a patch in diff format? You can find more information about how to do it on the devguide. -- nosy: +ezio.melotti, gpolo stage: - needs patch ___ Python tracker rep...@bugs.python.org

[issue15303] Minor revision to the BaseWidget._setup method in Tkinter

2012-11-09 Thread Guilherme Polo
Guilherme Polo added the comment: Please include a short version of the widget class you mentioned. It must be only long enough to show the issue. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15303

[issue15303] Minor revision to the BaseWidget._setup method in Tkinter

2012-07-09 Thread Drew French
New submission from Drew French rectangletan...@gmail.com: In the BaseWidget._setup method, master is evaluated as a Boolean (when Tkinter attempts to find a parent for the widget). I think it should really be evaluated against None, seeing as that is the default master keyword argument value