summaryrefslogtreecommitdiffstats
path: root/Doc
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 /Doc
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 'Doc')
-rw-r--r--Doc/whatsnew/3.8.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index a146249..d9c3f1b 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -167,6 +167,16 @@ Added :attr:`SSLContext.post_handshake_auth` to enable and
post-handshake authentication.
(Contributed by Christian Heimes in :issue:`34670`.)
+tkinter
+-------
+
+Added methods :meth:`~tkinter.Spinbox.selection_from`,
+:meth:`~tkinter.Spinbox.selection_present`,
+:meth:`~tkinter.Spinbox.selection_range` and
+:meth:`~tkinter.Spinbox.selection_to`
+in the :class:`tkinter.Spinbox` class.
+(Contributed by Juliette Monsel in :issue:`34829`.)
+
venv
----