Issue 29919: Remove unused imports found by pyflakes (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/74105

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:44 admin set github: 74105
2017-06-11 09:54:32 terry.reedy set type: enhancement
2017-06-11 09:53:48 terry.reedy set messages: +
2017-06-11 09:31:35 terry.reedy set pull_requests: + <pull%5Frequest2158>
2017-06-11 08:56:15 terry.reedy set versions: + Python 3.6nosy: + terry.reedymessages: + assignee: terry.reedy
2017-03-27 14:06:56 vstinner set status: open -> closedresolution: fixedstage: commit review -> resolved
2017-03-27 14:05:29 vstinner set messages: +
2017-03-27 14:04:00 serhiy.storchaka set nosy: + serhiy.storchakamessages: + stage: commit review
2017-03-27 13:05:13 vstinner create