[pypy-svn] r11583 - pypy/branch/non-fake-unicode/pypy/objspace/std

ac at codespeak.net ac at codespeak.net
Thu Apr 28 15:36:30 CEST 2005


Author: ac
Date: Thu Apr 28 15:36:30 2005
New Revision: 11583

Modified:
   pypy/branch/non-fake-unicode/pypy/objspace/std/floattype.py
Log:
Import missing Exception.

Modified: pypy/branch/non-fake-unicode/pypy/objspace/std/floattype.py
==============================================================================
--- pypy/branch/non-fake-unicode/pypy/objspace/std/floattype.py	(original)
+++ pypy/branch/non-fake-unicode/pypy/objspace/std/floattype.py	Thu Apr 28 15:36:30 2005
@@ -1,5 +1,6 @@
 from pypy.objspace.std.stdtypedef import *
 from pypy.interpreter.error import OperationError
+from pypy.objspace.std.strutil import ParseStringError
 
 def descr__new__(space, w_floattype, w_value=0.0):
     from pypy.objspace.std.floatobject import W_FloatObject



More information about the Pypy-commit mailing list