[pypy-svn] r14024 - pypy/dist/pypy/objspace/std

mwh at codespeak.net mwh at codespeak.net
Thu Jun 30 14:45:18 CEST 2005


Author: mwh
Date: Thu Jun 30 14:45:17 2005
New Revision: 14024

Modified:
   pypy/dist/pypy/objspace/std/floatobject.py
Log:
tyop


Modified: pypy/dist/pypy/objspace/std/floatobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/floatobject.py	(original)
+++ pypy/dist/pypy/objspace/std/floatobject.py	Thu Jun 30 14:45:17 2005
@@ -241,7 +241,7 @@
 def nonzero__Float(space, w_float):
     return space.newbool(w_float.floatval != 0.0)
 
-######## coersion must be done later
+######## coercion must be done later
 later = """
 def float_coerce(space, w_float):
     if w_float.__class__ == W_FloatObject:



More information about the Pypy-commit mailing list