diff options
author | Georg Brandl <georg@python.org> | 2010-02-06 22:49:47 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-02-06 22:49:47 (GMT) |
commit | 7d4b759bd972742dfba35597708522f91be5548a (patch) | |
tree | b1b1ecbe0c061b1e4f2833175f41a6554165f9f5 | |
parent | 48e65f5f6654b107cc5ea04c46c4e0eb6a32def6 (diff) | |
download | cpython-7d4b759bd972742dfba35597708522f91be5548a.zip cpython-7d4b759bd972742dfba35597708522f91be5548a.tar.gz cpython-7d4b759bd972742dfba35597708522f91be5548a.tar.bz2 |
Remove unused import.
-rw-r--r-- | Lib/collections.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections.py b/Lib/collections.py index abf6f89..12f3cca 100644 --- a/Lib/collections.py +++ b/Lib/collections.py @@ -12,7 +12,7 @@ import sys as _sys import heapq as _heapq from weakref import proxy as _proxy from itertools import repeat as _repeat, chain as _chain, starmap as _starmap, \ - ifilter as _ifilter, imap as _imap, izip as _izip + ifilter as _ifilter, imap as _imap ################################################################################ ### OrderedDict |