Author: Philip Jenvey <[email protected]>
Branch: py3k
Changeset: r59369:224100e73390
Date: 2012-12-08 10:51 -0800
http://bitbucket.org/pypy/pypy/changeset/224100e73390/

Log:    partially revert 6f4f798 to fix translation

diff --git a/pypy/objspace/std/strutil.py b/pypy/objspace/std/strutil.py
--- a/pypy/objspace/std/strutil.py
+++ b/pypy/objspace/std/strutil.py
@@ -213,4 +213,4 @@
     except ValueError:
         # note that we still put the original unicode string in the error
         # message, not ascii_s
-        raise ParseStringError(u"invalid literal for float(): %r" % s)
+        raise ParseStringError(u"invalid literal for float(): '%s'" % s)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to