Message279307
This is caused by replacing int() by self._tk.getint() in IntVar.get() (issue23880). But the failure can be reproduced even in 3.4 if set tk.wantobjects = 0 before creating root widget.
One way is making getint() accepting floats. This fizes original example, but doesn't solve the issue for tk.wantobjects = 0.
Other way is making IntVar.get() falling back to integer part of getdouble(). This fixes the example in both modes. Proposed patch goes this way. |
|
Date |
User |
Action |
Args |
2016-10-24 14:13:45 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, goyodiaz |
2016-10-24 14:13:45 | serhiy.storchaka | set | messageid: <1477318425.71.0.276317261348.issue27939@psf.upfronthosting.co.za> |
2016-10-24 14:13:45 | serhiy.storchaka | link | issue27939 messages |
2016-10-24 14:13:45 | serhiy.storchaka | create | |
|