aboutsummaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorCheryl Sabella <cheryl.sabella@gmail.com>2021-01-21 14:14:04 -0500
committerGitHub <noreply@github.com>2021-01-21 21:14:04 +0200
commit6713e869c4989c04318158b406c30a147ea52904 (patch)
tree766a06687de09455c661cbfa2dc4cd0f05ed37f4 /Misc
parentAdd a What's New entry for the new parser error improvements (GH-24280) (diff)
downloadcpython-6713e869c4989c04318158b406c30a147ea52904.tar.gz
cpython-6713e869c4989c04318158b406c30a147ea52904.tar.bz2
cpython-6713e869c4989c04318158b406c30a147ea52904.zip
bpo-33289: Return RGB triplet of ints instead of floats from tkinter.colorchooser (GH-6578)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-04-23-13-44-10.bpo-33289.anBnUr.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-04-23-13-44-10.bpo-33289.anBnUr.rst b/Misc/NEWS.d/next/Library/2018-04-23-13-44-10.bpo-33289.anBnUr.rst
new file mode 100644
index 00000000000..52d9ac9dd90
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-04-23-13-44-10.bpo-33289.anBnUr.rst
@@ -0,0 +1,2 @@
+Correct call to :mod:`tkinter.colorchooser` to return RGB triplet of ints
+instead of floats. Patch by Cheryl Sabella.