This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Add missing selection_ methods to tkinter Spinbox
Type: enhancement Stage: resolved
Components: Tkinter Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: j-4321-i, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2018-09-28 08:37 by j-4321-i, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 9617 merged j-4321-i, 2018-09-28 08:46
Messages (2)
msg326614 - (view) Author: Juliette Monsel (j-4321-i) * Date: 2018-09-28 08:37
Though the text area of the tkinter Spinbox behaves like an Entry, the methods selection_from, selection_range, selection_present and selection_to have not been implemented. So for consistency with the Entry widget, I suggest to add them.
msg327360 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2018-10-08 16:29
New changeset af5658ae93b0a87ab4420a7dc30a07fa5a83e252 by Serhiy Storchaka (Juliette Monsel) in branch 'master':
bpo-34829: Add missing selection_ methods to the Tkinter Spinbox. (GH-9617)
https://github.com/python/cpython/commit/af5658ae93b0a87ab4420a7dc30a07fa5a83e252
History
Date User Action Args
2022-04-11 14:59:06adminsetgithub: 79010
2018-10-08 16:31:47serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-10-08 16:29:34serhiy.storchakasetmessages: + msg327360
2018-09-28 11:01:03serhiy.storchakasetnosy: + serhiy.storchaka

versions: + Python 3.8
2018-09-28 08:46:38j-4321-isetkeywords: + patch
stage: patch review
pull_requests: + pull_request9016
2018-09-28 08:37:55j-4321-icreate