[issue15303] Minor revision to the method in Tkinter

2020-12-25 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10 -Python 3.6 ___ Python tracker ___ _

[issue15303] Minor revision to the method in Tkinter

2020-12-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset bb70b2afe39ad4334a9f3449cddd28149bd628b6 by Serhiy Storchaka in branch 'master': bpo-15303: Support widgets with boolean value False in Tkinter (GH-23904) https://github.com/python/cpython/commit/bb70b2afe39ad4334a9f3449cddd28149bd628b6

[issue15303] Minor revision to the method in Tkinter

2020-12-22 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +22758 pull_request: https://github.com/python/cpython/pull/23904 ___ Python tracker ___

[issue15303] Minor revision to the method in Tkinter

2016-07-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka type: behavior -> enhancement versions: +Python 3.6 -Python 3.4 ___ Python tracker ___ ___

[issue15303] Minor revision to the method in Tkinter

2014-01-09 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- priority: normal -> low ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue15303] Minor revision to the 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 whic

[issue15303] Minor revision to the 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 ___

[issue15303] Minor revision to the 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

[issue15303] Minor revision to the method in Tkinter

2012-07-09 Thread Drew French
New submission from Drew French : In the method, is evaluated as a Boolean (when Tkinter attempts to find a parent for the widget). I think it should really be evaluated against , seeing as that is the default keyword argument value for most widgets. I ran into problems with this when makin