diff options
author | Brian Kearns <bdkearns@gmail.com> | 2013-02-05 17:55:16 -0500 |
---|---|---|
committer | Brian Kearns <bdkearns@gmail.com> | 2013-02-05 17:55:16 -0500 |
commit | 7deead4d984ed21af560a70b0d0904dd03d3c445 (patch) | |
tree | 4fa0bc0d532f038d8ace6ce137d324224f59135a /lib-python/2.7/collections.py | |
parent | a couple usemodules lines (diff) | |
download | pypy-7deead4d984ed21af560a70b0d0904dd03d3c445.tar.gz pypy-7deead4d984ed21af560a70b0d0904dd03d3c445.tar.bz2 pypy-7deead4d984ed21af560a70b0d0904dd03d3c445.zip |
put this line back where it is upstream
Diffstat (limited to 'lib-python/2.7/collections.py')
-rw-r--r-- | lib-python/2.7/collections.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-python/2.7/collections.py b/lib-python/2.7/collections.py index ae8f3dea4e..97f299a1d4 100644 --- a/lib-python/2.7/collections.py +++ b/lib-python/2.7/collections.py @@ -6,10 +6,10 @@ import _abcoll __all__ += _abcoll.__all__ from _collections import deque, defaultdict +from operator import itemgetter as _itemgetter from keyword import iskeyword as _iskeyword import sys as _sys import heapq as _heapq -from operator import itemgetter as _itemgetter from itertools import repeat as _repeat, chain as _chain, starmap as _starmap try: |