[pypy-commit] pypy default: fix fail caused by 4237a1dca2e8

mattip noreply at buildbot.pypy.org
Tue Feb 5 13:53:21 CET 2013


Author: mattip
Branch: 
Changeset: r60883:ddba75d6edf2
Date: 2013-02-05 14:52 +0200
http://bitbucket.org/pypy/pypy/changeset/ddba75d6edf2/

Log:	fix fail caused by 4237a1dca2e8

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
@@ -9,6 +9,7 @@
 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