diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-30 16:52:02 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-30 16:52:02 (GMT) |
commit | 016a9acb2603f07866c060cb14b655b9d9b822fa (patch) | |
tree | aadf86d83353c7be1fcbed3667e6be084d15ce44 /Misc | |
parent | 998c9cdd423409e2b40e02eb41614536f9d8005c (diff) | |
parent | 32c0d3ada52109f339c081d3408546a4af024b3c (diff) | |
download | cpython-016a9acb2603f07866c060cb14b655b9d9b822fa.zip cpython-016a9acb2603f07866c060cb14b655b9d9b822fa.tar.gz cpython-016a9acb2603f07866c060cb14b655b9d9b822fa.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')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -31,6 +31,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 #18844: The various ways of specifing weights for random.choices() now produce the same result sequences. |