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
Type: behavior Stage:
Components: Versions: Python 2.6
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: Nosy List: calvin, christian.heimes
Priority: normal Keywords: patch

Created on 2008-02-23 15:22 by calvin, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
python-remove-unused-imports.diff calvin, 2008-02-23 15:22
Messages (3)
msg62746 - (view) Author: Bastian Kleineidam (calvin) Date: 2008-02-23 15:22
I ran the pyflakes checker over the Python source repository and removed
some unused imports. Only obvious (from what I can see) unused imports
were removed, with most offenders being "import os, sys, string".
The diff is against current SVN (I am using git-svn, hence the --git diff).
msg62776 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2008-02-23 17:18
I'm going to check the patch now.
msg62783 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2008-02-23 17:42
Applied in r61000
History
Date User Action Args
2022-04-11 14:56:31adminsetgithub: 46420
2008-02-23 17:42:03christian.heimessetstatus: open -> closed
resolution: accepted
messages: + msg62783
2008-02-23 17:18:21christian.heimessetpriority: normal
type: behavior
messages: + msg62776
nosy: + christian.heimes
versions: + Python 2.6
2008-02-23 16:40:41loewissetkeywords: + patch
2008-02-23 15:22:17calvincreate