[pypy-svn] r70844 - pypy/branch/lazy-operr-format/pypy/objspace/std

arigo at codespeak.net arigo at codespeak.net
Mon Jan 25 18:36:55 CET 2010


Author: arigo
Date: Mon Jan 25 18:36:54 2010
New Revision: 70844

Modified:
   pypy/branch/lazy-operr-format/pypy/objspace/std/listobject.py
   pypy/branch/lazy-operr-format/pypy/objspace/std/ropeobject.py
   pypy/branch/lazy-operr-format/pypy/objspace/std/ropeunicodeobject.py
   pypy/branch/lazy-operr-format/pypy/objspace/std/stringobject.py
   pypy/branch/lazy-operr-format/pypy/objspace/std/unicodeobject.py
Log:
Add a missing import here and there.


Modified: pypy/branch/lazy-operr-format/pypy/objspace/std/listobject.py
==============================================================================
--- pypy/branch/lazy-operr-format/pypy/objspace/std/listobject.py	(original)
+++ pypy/branch/lazy-operr-format/pypy/objspace/std/listobject.py	Mon Jan 25 18:36:54 2010
@@ -1,5 +1,6 @@
 from pypy.objspace.std.objspace import register_all, W_Object
 from pypy.objspace.std.objspace import registerimplementation
+from pypy.objspace.std.multimethod import FailedToImplement
 from pypy.interpreter.error import OperationError, operationerrfmt
 from pypy.objspace.std.inttype import wrapint
 from pypy.objspace.std.listtype import get_list_index

Modified: pypy/branch/lazy-operr-format/pypy/objspace/std/ropeobject.py
==============================================================================
--- pypy/branch/lazy-operr-format/pypy/objspace/std/ropeobject.py	(original)
+++ pypy/branch/lazy-operr-format/pypy/objspace/std/ropeobject.py	Mon Jan 25 18:36:54 2010
@@ -1,5 +1,6 @@
 from pypy.objspace.std.objspace import register_all, W_Object
 from pypy.objspace.std.objspace import registerimplementation
+from pypy.objspace.std.multimethod import FailedToImplement
 from pypy.interpreter.error import OperationError, operationerrfmt
 from pypy.interpreter import gateway
 from pypy.rlib.objectmodel import we_are_translated

Modified: pypy/branch/lazy-operr-format/pypy/objspace/std/ropeunicodeobject.py
==============================================================================
--- pypy/branch/lazy-operr-format/pypy/objspace/std/ropeunicodeobject.py	(original)
+++ pypy/branch/lazy-operr-format/pypy/objspace/std/ropeunicodeobject.py	Mon Jan 25 18:36:54 2010
@@ -1,5 +1,6 @@
 from pypy.objspace.std.objspace import register_all, W_Object
 from pypy.objspace.std.objspace import registerimplementation
+from pypy.objspace.std.multimethod import FailedToImplement
 from pypy.interpreter.error import OperationError, operationerrfmt
 from pypy.interpreter import gateway
 from pypy.objspace.std.stringobject import W_StringObject

Modified: pypy/branch/lazy-operr-format/pypy/objspace/std/stringobject.py
==============================================================================
--- pypy/branch/lazy-operr-format/pypy/objspace/std/stringobject.py	(original)
+++ pypy/branch/lazy-operr-format/pypy/objspace/std/stringobject.py	Mon Jan 25 18:36:54 2010
@@ -1,5 +1,6 @@
 from pypy.objspace.std.objspace import register_all, W_Object
 from pypy.objspace.std.objspace import registerimplementation
+from pypy.objspace.std.multimethod import FailedToImplement
 from pypy.interpreter.error import OperationError, operationerrfmt
 from pypy.interpreter import gateway
 from pypy.rlib.rarithmetic import ovfcheck

Modified: pypy/branch/lazy-operr-format/pypy/objspace/std/unicodeobject.py
==============================================================================
--- pypy/branch/lazy-operr-format/pypy/objspace/std/unicodeobject.py	(original)
+++ pypy/branch/lazy-operr-format/pypy/objspace/std/unicodeobject.py	Mon Jan 25 18:36:54 2010
@@ -1,5 +1,6 @@
 from pypy.objspace.std.objspace import register_all, W_Object
 from pypy.objspace.std.objspace import registerimplementation
+from pypy.objspace.std.multimethod import FailedToImplement
 from pypy.interpreter import gateway
 from pypy.interpreter.error import OperationError, operationerrfmt
 from pypy.objspace.std.stringobject import W_StringObject, make_rsplit_with_delim



More information about the Pypy-commit mailing list