summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAlan D Moore <me@alandmoore.com>2018-02-09 00:03:55 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-02-09 00:03:55 (GMT)
commita48e78a0b7761dd74f1d03fc69e0f6caa6f02fe6 (patch)
tree4aa85cc74c32fed151a62a1c5da09e27e2583d7a /Misc
parent32921f90821ab54ffb757b7e996e5b7a71fac25e (diff)
downloadcpython-a48e78a0b7761dd74f1d03fc69e0f6caa6f02fe6.zip
cpython-a48e78a0b7761dd74f1d03fc69e0f6caa6f02fe6.tar.gz
cpython-a48e78a0b7761dd74f1d03fc69e0f6caa6f02fe6.tar.bz2
bpo-32585: Add tkinter.ttk.Spinbox. (#5221)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2018-01-18-13-09-00.bpo-32585.qpeijr.rst1
2 files changed, 2 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index c5eadc5..4c8b86a 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1073,6 +1073,7 @@ The Dragon De Monsyne
Bastien Montagne
Skip Montanaro
Peter Moody
+Alan D. Moore
Paul Moore
Ross Moore
Ben Morgan
diff --git a/Misc/NEWS.d/next/Library/2018-01-18-13-09-00.bpo-32585.qpeijr.rst b/Misc/NEWS.d/next/Library/2018-01-18-13-09-00.bpo-32585.qpeijr.rst
new file mode 100644
index 0000000..c504e8b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-01-18-13-09-00.bpo-32585.qpeijr.rst
@@ -0,0 +1 @@
+Add Ttk spinbox widget to to tkinter.ttk. Patch by Alan D Moore.