]> granicus.if.org Git - python/commitdiff
Remove unused imports
authorRaymond Hettinger <python@rcn.com>
Sun, 24 Apr 2011 01:37:37 +0000 (18:37 -0700)
committerRaymond Hettinger <python@rcn.com>
Sun, 24 Apr 2011 01:37:37 +0000 (18:37 -0700)
Lib/collections.py

index 42980bfa317b5737a79a99a97ef5971446fe6307..0a3f18cb4eab37995e6e77f5d85afc959a6f51f6 100644 (file)
@@ -6,12 +6,12 @@ import _abcoll
 __all__ += _abcoll.__all__
 
 from _collections import deque, defaultdict
-from operator import itemgetter as _itemgetter, eq as _eq
+from operator import itemgetter as _itemgetter
 from keyword import iskeyword as _iskeyword
 import sys as _sys
 import heapq as _heapq
-from itertools import repeat as _repeat, chain as _chain, starmap as _starmap, \
-                      ifilter as _ifilter, imap as _imap
+from itertools import repeat as _repeat, chain as _chain, starmap as _starmap
+
 try:
     from thread import get_ident as _get_ident
 except ImportError: