Author: remarkablerocket <danieljudepatr...@gmail.com>
Branch: py3.5
Changeset: r87381:60abb56dd00a
Date: 2016-09-25 21:37 +0100
http://bitbucket.org/pypy/pypy/changeset/60abb56dd00a/

Log:    Merged pypy/pypy/py3.5 into py3.5

diff --git a/pypy/objspace/std/floatobject.py b/pypy/objspace/std/floatobject.py
--- a/pypy/objspace/std/floatobject.py
+++ b/pypy/objspace/std/floatobject.py
@@ -227,7 +227,7 @@
                 if e.match(space, space.w_TypeError):
                     raise oefmt(
                         space.w_TypeError,
-                        ("float() argument must be a string or a number,"
+                        ("float() argument must be a string or a number, "
                                 "not '%T'"), w_value)
                 raise
             value = _string_to_float(space, w_value, value)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to