[issue27939] Tkinter mainloop raises when setting the value of ttk.LabeledScale

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +1005 ___ Python tracker ___ ___

[issue27939] Tkinter mainloop raises when setting the value of ttk.LabeledScale

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

[issue27939] Tkinter mainloop raises when setting the value of ttk.LabeledScale

2016-10-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 394b2b4da150 by Serhiy Storchaka in branch '3.5': Issue #27939: Fixed bugs in tkinter.ttk.LabeledScale and tkinter.Scale caused https://hg.python.org/cpython/rev/394b2b4da150 New changeset 91884d043fdc by Serhiy Storchaka in branch '3.6': Issue

[issue27939] Tkinter mainloop raises when setting the value of ttk.LabeledScale

2016-10-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: 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

[issue27939] Tkinter mainloop raises when setting the value of ttk.LabeledScale

2016-09-02 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +serhiy.storchaka stage: -> needs patch type: crash -> behavior versions: +Python 3.6 ___ Python tracker

[issue27939] Tkinter mainloop raises when setting the value of ttk.LabeledScale

2016-09-02 Thread Goyo
New submission from Goyo: Calling mainloop after setting the value of a ttk.LabeledScale raises an error. The same happens if the value is set after entering the mainloop. Does not affect python 3.4.3. Does not affect ttk.Scale. No error is raised if you do not call mainloop. import tkinter