[pypy-svn] r78851 - pypy/branch/fast-forward/pypy/module/__builtin__

afa at codespeak.net afa at codespeak.net
Mon Nov 8 00:07:41 CET 2010


Author: afa
Date: Mon Nov  8 00:07:39 2010
New Revision: 78851

Modified:
   pypy/branch/fast-forward/pypy/module/__builtin__/interp_memoryview.py
Log:
Try to fix translation. I don't know if operator.lt is RPython...


Modified: pypy/branch/fast-forward/pypy/module/__builtin__/interp_memoryview.py
==============================================================================
--- pypy/branch/fast-forward/pypy/module/__builtin__/interp_memoryview.py	(original)
+++ pypy/branch/fast-forward/pypy/module/__builtin__/interp_memoryview.py	Mon Nov  8 00:07:39 2010
@@ -6,6 +6,7 @@
 from pypy.interpreter.gateway import interp2app, unwrap_spec, ObjSpace, W_Root
 from pypy.interpreter.typedef import TypeDef, GetSetProperty
 from pypy.interpreter.error import OperationError
+import operator
 
 W_Buffer = buffer.Buffer      # actually implemented in pypy.interpreter.buffer
 



More information about the Pypy-commit mailing list