[pypy-svn] r5120 - pypy/trunk/src/pypy/objspace/std

arigo at codespeak.net arigo at codespeak.net
Wed Jun 16 17:38:23 CEST 2004


Author: arigo
Date: Wed Jun 16 17:38:23 2004
New Revision: 5120

Modified:
   pypy/trunk/src/pypy/objspace/std/floattype.py
Log:
Missing import.


Modified: pypy/trunk/src/pypy/objspace/std/floattype.py
==============================================================================
--- pypy/trunk/src/pypy/objspace/std/floattype.py	(original)
+++ pypy/trunk/src/pypy/objspace/std/floattype.py	Wed Jun 16 17:38:23 2004
@@ -1,4 +1,5 @@
 from pypy.objspace.std.stdtypedef import *
+from pypy.interpreter.error import OperationError
 
 def descr__new__(space, w_floattype, w_value=None):
     from pypy.objspace.std.floatobject import W_FloatObject



More information about the Pypy-commit mailing list