diff options
| author | Raymond Hettinger <python@rcn.com> | 2011-04-24 01:37:37 (GMT) |
|---|---|---|
| committer | Raymond Hettinger <python@rcn.com> | 2011-04-24 01:37:37 (GMT) |
| commit | b36f747464b70db34f7b1fa5ae4285eccec6dfe6 (patch) | |
| tree | b30bf480152bb2dc03986c9a452a5a4a21335ed1 | |
| parent | 43a5641c0bff4a3a4fd6332baa480321520f9f9b (diff) | |
| download | cpython-b36f747464b70db34f7b1fa5ae4285eccec6dfe6.zip cpython-b36f747464b70db34f7b1fa5ae4285eccec6dfe6.tar.gz cpython-b36f747464b70db34f7b1fa5ae4285eccec6dfe6.tar.bz2 | |
Remove unused imports
| -rw-r--r-- | Lib/collections.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/collections.py b/Lib/collections.py index 42980bf..0a3f18c 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: |
