summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-30 16:49:52 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-30 16:49:52 (GMT)
commit32c0d3ada52109f339c081d3408546a4af024b3c (patch)
tree899499d5056ea2c9f44e225ff073cfb1763846ae /Misc/NEWS
parent043868393969224947c03617475d31f64ea59634 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cbc8c4d..4d84e7e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.