[pypy-svn] r39884 - pypy/branch/pypy-2.5/pypy/objspace/std

gbrandl at codespeak.net gbrandl at codespeak.net
Sun Mar 4 14:57:59 CET 2007


Author: gbrandl
Date: Sun Mar  4 14:57:57 2007
New Revision: 39884

Modified:
   pypy/branch/pypy-2.5/pypy/objspace/std/listmultiobject.py
   pypy/branch/pypy-2.5/pypy/objspace/std/listtype.py
Log:
Missing imports.



Modified: pypy/branch/pypy-2.5/pypy/objspace/std/listmultiobject.py
==============================================================================
--- pypy/branch/pypy-2.5/pypy/objspace/std/listmultiobject.py	(original)
+++ pypy/branch/pypy-2.5/pypy/objspace/std/listmultiobject.py	Sun Mar  4 14:57:57 2007
@@ -1,5 +1,6 @@
 from pypy.objspace.std.objspace import *
 from pypy.objspace.std.inttype import wrapint
+from pypy.objspace.std.listtype import get_list_index
 from pypy.objspace.std.sliceobject import W_SliceObject
 
 from pypy.objspace.std import slicetype

Modified: pypy/branch/pypy-2.5/pypy/objspace/std/listtype.py
==============================================================================
--- pypy/branch/pypy-2.5/pypy/objspace/std/listtype.py	(original)
+++ pypy/branch/pypy-2.5/pypy/objspace/std/listtype.py	Sun Mar  4 14:57:57 2007
@@ -1,5 +1,6 @@
 from __future__ import generators
 from pypy.interpreter import gateway
+from pypy.interpreter.error import OperationError
 from pypy.objspace.std.stdtypedef import *
 from pypy.objspace.std.register_all import register_all
 from sys import maxint



More information about the Pypy-commit mailing list