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: Fix imports in window.py
Type: behavior Stage: resolved
Components: IDLE Versions: Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: terry.reedy Nosy List: cheryl.sabella, terry.reedy
Priority: normal Keywords: patch, patch, patch

Created on 2019-01-05 00:13 by cheryl.sabella, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 11434 merged cheryl.sabella, 2019-01-05 00:17
PR 11449 merged miss-islington, 2019-01-06 20:56
PR 11449 merged miss-islington, 2019-01-06 20:56
PR 11449 merged miss-islington, 2019-01-06 20:56
PR 11449 merged miss-islington, 2019-01-06 20:56
Messages (4)
msg333028 - (view) Author: Cheryl Sabella (cheryl.sabella) * (Python committer) Date: 2019-01-05 00:13
Remove use of `from tkinter import *` from windows.py.
msg333067 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2019-01-05 18:41
'import *' is a PEP 8 violation. Depending in the * import to import sys is a bug.
msg333119 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2019-01-06 20:55
New changeset 11303dd6035a7d7f78025ce5a3e3b9bdf7380c9a by Terry Jan Reedy (Cheryl Sabella) in branch 'master':
bpo-35660: Fix imports in idlelib.window (#11434)
https://github.com/python/cpython/commit/11303dd6035a7d7f78025ce5a3e3b9bdf7380c9a
msg333120 - (view) Author: miss-islington (miss-islington) Date: 2019-01-06 21:13
New changeset be37dbff1ce3fa2ddd9115352b31ac0f6b44c193 by Miss Islington (bot) in branch '3.7':
bpo-35660: Fix imports in idlelib.window (GH-11434)
https://github.com/python/cpython/commit/be37dbff1ce3fa2ddd9115352b31ac0f6b44c193
History
Date User Action Args
2022-04-11 14:59:09adminsetgithub: 79841
2019-01-06 21:29:58terry.reedysetstatus: open -> closed

nosy: - miss-islington
keywords: patch, patch, patch
resolution: fixed
stage: patch review -> resolved
2019-01-06 21:13:32miss-islingtonsetnosy: + miss-islington
messages: + msg333120
2019-01-06 20:56:48miss-islingtonsetpull_requests: + pull_request10911
2019-01-06 20:56:42miss-islingtonsetpull_requests: + pull_request10912
2019-01-06 20:56:36miss-islingtonsetpull_requests: + pull_request10910
2019-01-06 20:56:30miss-islingtonsetpull_requests: + pull_request10909
2019-01-06 20:55:54terry.reedysetmessages: + msg333119
2019-01-06 20:50:54terry.reedysetkeywords: patch, patch, patch
title: IDLE: Remove import * from window.py -> IDLE: Fix imports in window.py
2019-01-05 18:41:21terry.reedysetkeywords: patch, patch, patch
type: enhancement -> behavior
messages: + msg333067
2019-01-05 16:28:45cheryl.sabellasetpull_requests: - pull_request10864
2019-01-05 16:28:34cheryl.sabellasetpull_requests: - pull_request10863
2019-01-05 00:17:35cheryl.sabellasetkeywords: + patch
stage: patch review
pull_requests: + pull_request10864
2019-01-05 00:17:32cheryl.sabellasetkeywords: + patch
stage: (no value)
pull_requests: + pull_request10863
2019-01-05 00:17:28cheryl.sabellasetkeywords: + patch
stage: (no value)
pull_requests: + pull_request10862
2019-01-05 00:13:36cheryl.sabellacreate