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

tismer at codespeak.net tismer at codespeak.net
Wed Jul 13 18:19:51 CEST 2005


Author: tismer
Date: Wed Jul 13 18:19:51 2005
New Revision: 14629

Modified:
   pypy/dist/pypy/objspace/std/strutil.py
Log:
typo, wording

Modified: pypy/dist/pypy/objspace/std/strutil.py
==============================================================================
--- pypy/dist/pypy/objspace/std/strutil.py	(original)
+++ pypy/dist/pypy/objspace/std/strutil.py	Wed Jul 13 18:19:51 2005
@@ -364,13 +364,13 @@
     try:
         while p >= 0:
             # note: exponentiation is intentionally used for
-            # exactness. If time is an issue, this can easily
+            # exactness. If speed is an issue, this can easily
             # be kept in a cache for every digit value.
             r += (ord(digits[p]) - ord('0')) * 10.0 ** e
             p -= 1
             e += 1
     except OverflowError:
-        r =1e200 * 1e200
+        r = 1e200 * 1e200
 
     if sign == '-':
         r = -r



More information about the Pypy-commit mailing list