diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-30 16:49:52 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-30 16:49:52 (GMT) |
commit | 32c0d3ada52109f339c081d3408546a4af024b3c (patch) | |
tree | 899499d5056ea2c9f44e225ff073cfb1763846ae /Misc/NEWS | |
parent | 043868393969224947c03617475d31f64ea59634 (diff) | |
download | cpython-32c0d3ada52109f339c081d3408546a4af024b3c.zip cpython-32c0d3ada52109f339c081d3408546a4af024b3c.tar.gz cpython-32c0d3ada52109f339c081d3408546a4af024b3c.tar.bz2 |
Issue #27939: Fixed bugs in tkinter.ttk.LabeledScale and tkinter.Scale caused
by representing the scale as float value internally in Tk. tkinter.IntVar
now works if float value is set to underlying Tk variable.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -113,6 +113,10 @@ Core and Builtins Library ------- +- Issue #27939: Fixed bugs in tkinter.ttk.LabeledScale and tkinter.Scale caused + by representing the scale as float value internally in Tk. tkinter.IntVar + now works if float value is set to underlying Tk variable. + - Issue #28255: calendar.TextCalendar().prmonth() no longer prints a space at the start of new line after printing a month's calendar. Patch by Xiang Zhang. |