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 import from base64
Type: resource usage Stage: resolved
Components: Library (Lib) Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: terry.reedy Nosy List: Claudiu.Popa, python-dev, terry.reedy
Priority: normal Keywords: patch

Created on 2014-02-22 10:08 by Claudiu.Popa, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
base64_remove_unused_import.patch Claudiu.Popa, 2014-02-22 10:08 review
Messages (4)
msg211917 - (view) Author: PCManticore (Claudiu.Popa) * (Python triager) Date: 2014-02-22 10:08
base64 imports `itertools`, but doesn't use it at all.
msg212543 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-03-02 09:06
Import is not present in 2.7.
msg212544 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-03-02 09:17
New changeset d3732760e3d6 by Terry Jan Reedy in branch 'default':
Closes issue #20728: Remove unused import added in rev 42366e293b7b and
http://hg.python.org/cpython/rev/d3732760e3d6
msg212545 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-03-02 09:18
Nor in 3.3.
History
Date User Action Args
2022-04-11 14:57:59adminsetgithub: 64927
2014-03-02 09:18:15terry.reedysetstatus: open -> closed
versions: - Python 3.3
messages: + msg212545

resolution: fixed
stage: commit review -> resolved
2014-03-02 09:17:27python-devsetnosy: + python-dev
messages: + msg212544
2014-03-02 09:06:49terry.reedysetassignee: terry.reedy
type: resource usage
versions: + Python 3.3, Python 3.4, - Python 3.5
nosy: + terry.reedy

messages: + msg212543
stage: commit review
2014-02-22 10:08:17Claudiu.Popacreate