[Python-checkins] r82082 - python/branches/py3k-dtoa/Python/dtoa.c

mark.dickinson python-checkins at python.org
Fri Jun 18 23:39:16 CEST 2010


Author: mark.dickinson
Date: Fri Jun 18 23:39:15 2010
New Revision: 82082

Log:
Fix typo.

Modified:
   python/branches/py3k-dtoa/Python/dtoa.c

Modified: python/branches/py3k-dtoa/Python/dtoa.c
==============================================================================
--- python/branches/py3k-dtoa/Python/dtoa.c	(original)
+++ python/branches/py3k-dtoa/Python/dtoa.c	Fri Jun 18 23:39:15 2010
@@ -1734,7 +1734,7 @@
                 goto ret;
             }
         }
-        else if (-e1 <= -Ten_pmax) {
+        else if (-e1 <= Ten_pmax) {
             dval(&rv) /= tens[-e1];
             goto ret;
         }


More information about the Python-checkins mailing list