[pypy-commit] pypy default: put this line back where it is upstream

bdkearns noreply at buildbot.pypy.org
Tue Feb 5 23:57:12 CET 2013


Author: Brian Kearns <bdkearns at gmail.com>
Branch: 
Changeset: r60888:4a15e2b1773e
Date: 2013-02-05 17:55 -0500
http://bitbucket.org/pypy/pypy/changeset/4a15e2b1773e/

Log:	put this line back where it is upstream

diff --git a/lib-python/2.7/collections.py b/lib-python/2.7/collections.py
--- a/lib-python/2.7/collections.py
+++ b/lib-python/2.7/collections.py
@@ -6,10 +6,10 @@
 __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:


More information about the pypy-commit mailing list