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: Remove unused imports found by pyflakes
Type: enhancement Stage: resolved
Components: Versions: Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: terry.reedy Nosy List: serhiy.storchaka, terry.reedy, vstinner
Priority: normal Keywords:

Created on 2017-03-27 13:05 by vstinner, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 137 merged vstinner, 2017-03-27 13:05
PR 2105 merged terry.reedy, 2017-06-11 09:31
Messages (5)
msg290607 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-03-27 13:05
Attached PR removes unused imports found by pyflakes. It makes also minor PEP 8 coding style fixes on modified imports.
msg290613 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-03-27 14:04
LGTM.
msg290614 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-03-27 14:05
New changeset d6debb24e06152a827769b0cac24c47deccdeac1 by Victor Stinner in branch 'master':
bpo-29919: Remove unused imports found by pyflakes (#137)
https://github.com/python/cpython/commit/d6debb24e06152a827769b0cac24c47deccdeac1
msg295695 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2017-06-11 08:56
I will backport idlelib changes that apply.
msg295696 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2017-06-11 09:53
New changeset c6696feb09a8cf13e13e42ed9cc0b8c2e8795800 by terryjreedy in branch '3.6':
[3.6] bpo-29919 Remove unused imports from idlelib [GH-137] (#2105)
https://github.com/python/cpython/commit/c6696feb09a8cf13e13e42ed9cc0b8c2e8795800
History
Date User Action Args
2022-04-11 14:58:44adminsetgithub: 74105
2017-06-11 09:54:32terry.reedysettype: enhancement
2017-06-11 09:53:48terry.reedysetmessages: + msg295696
2017-06-11 09:31:35terry.reedysetpull_requests: + pull_request2158
2017-06-11 08:56:15terry.reedysetversions: + Python 3.6
nosy: + terry.reedy

messages: + msg295695

assignee: terry.reedy
2017-03-27 14:06:56vstinnersetstatus: open -> closed
resolution: fixed
stage: commit review -> resolved
2017-03-27 14:05:29vstinnersetmessages: + msg290614
2017-03-27 14:04:00serhiy.storchakasetnosy: + serhiy.storchaka

messages: + msg290613
stage: commit review
2017-03-27 13:05:13vstinnercreate