summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-04-23 18:37:37 -0700
committerRaymond Hettinger <python@rcn.com>2011-04-23 18:37:37 -0700
commit1c9c69b6176dacee84361f9eb3d0fa21401a0e06 (patch)
tree848b19e9a0dac3a90981fee13590ab59ae6f63db /Lib
parent5a7d5d58020bcd7df79ba0a381fb35031ebc1ca5 (diff)
downloadcpython-1c9c69b6176dacee84361f9eb3d0fa21401a0e06.tar.gz
Remove unused imports
Diffstat (limited to 'Lib')
-rw-r--r--Lib/collections.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/collections.py b/Lib/collections.py
index 42980bfa31..0a3f18cb4e 100644
--- a/Lib/collections.py
+++ b/Lib/collections.py
@@ -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: