summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJuliette Monsel <j4321@users.noreply.github.com>2018-10-08 16:29:24 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-10-08 16:29:24 (GMT)
commitaf5658ae93b0a87ab4420a7dc30a07fa5a83e252 (patch)
tree88fc472ba5b1de85818b1603c7b69ba19addc3d4 /Misc
parenta8d5e2f255f1a20fc8af7dc16a7cb708e014952a (diff)
downloadcpython-af5658ae93b0a87ab4420a7dc30a07fa5a83e252.zip
cpython-af5658ae93b0a87ab4420a7dc30a07fa5a83e252.tar.gz
cpython-af5658ae93b0a87ab4420a7dc30a07fa5a83e252.tar.bz2
bpo-34829: Add missing selection_ methods to the Tkinter Spinbox. (GH-9617)
Implement the methods selection_from(), selection_range(), selection_present() and selection_to() for Tkinter Spinbox.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2018-10-08-16-04-36.bpo-34829.B7v7D0.rst3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 272130f..5014584 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1094,6 +1094,7 @@ Tim Mitchell
Zubin Mithra
Florian Mladitsch
Doug Moen
+Juliette Monsel
The Dragon De Monsyne
Bastien Montagne
Skip Montanaro
diff --git a/Misc/NEWS.d/next/Library/2018-10-08-16-04-36.bpo-34829.B7v7D0.rst b/Misc/NEWS.d/next/Library/2018-10-08-16-04-36.bpo-34829.B7v7D0.rst
new file mode 100644
index 0000000..e74b56b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-10-08-16-04-36.bpo-34829.B7v7D0.rst
@@ -0,0 +1,3 @@
+Add methods ``selection_from``, ``selection_range``, ``selection_present``
+and ``selection_to`` to the ``tkinter.Spinbox`` for consistency with the
+``tkinter.Entry`` widget. Patch by Juliette Monsel.