[issue34829] Add missing selection_ methods to tkinter Spinbox

2018-10-08 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue34829] Add missing selection_ methods to tkinter Spinbox

2018-10-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: 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/af5658ae93b0a87ab4420a7dc30

[issue34829] Add missing selection_ methods to tkinter Spinbox

2018-09-28 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +serhiy.storchaka versions: +Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue34829] Add missing selection_ methods to tkinter Spinbox

2018-09-28 Thread Juliette Monsel
Change by Juliette Monsel : -- keywords: +patch pull_requests: +9016 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue34829] Add missing selection_ methods to tkinter Spinbox

2018-09-28 Thread Juliette Monsel
New submission from Juliette Monsel : 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. -- comp