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: IDLE: delete tabbedpages.py
Type: resource usage Stage: resolved
Components: IDLE Versions: Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: terry.reedy Nosy List: terry.reedy
Priority: normal Keywords: patch

Created on 2017-11-29 02:41 by terry.reedy, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 4628 merged terry.reedy, 2017-11-29 02:49
PR 4631 merged python-dev, 2017-11-29 05:09
Messages (3)
msg307199 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2017-11-29 02:41
idlelib.tabbedpages.TabbedPageSet is a custom widget only used for the tabbed config dialog.  #30781 converted to using tkinter.ttk.Notebook.  The latter has proven to be an improvement and the former has no other use, nor would I recommend its use.  Time to delete the file.
msg307208 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2017-11-29 05:08
New changeset 041efd292ebff46060fc1680b0608b1d4c876a48 by Terry Jan Reedy in branch 'master':
bpo-32164: Delete unused file idlelib/tabbedpages.py (#4628)
https://github.com/python/cpython/commit/041efd292ebff46060fc1680b0608b1d4c876a48
msg307211 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2017-11-29 06:07
New changeset 957aef7c41ccae8a60d3dbbe8863401bd270dc86 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.6':
bpo-32164: Delete unused file idlelib/tabbedpages.py (GH-4628) (#4631)
https://github.com/python/cpython/commit/957aef7c41ccae8a60d3dbbe8863401bd270dc86
History
Date User Action Args
2022-04-11 14:58:55adminsetgithub: 76345
2017-11-29 06:08:03terry.reedysetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2017-11-29 06:07:25terry.reedysetmessages: + msg307211
2017-11-29 05:09:36python-devsetpull_requests: + pull_request4547
2017-11-29 05:08:33terry.reedysetmessages: + msg307208
2017-11-29 02:49:39terry.reedysetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request4543
2017-11-29 02:41:53terry.reedycreate