diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-10-26 21:12:50 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-10-26 21:12:50 (GMT) |
commit | e0d6f605f2afbc923c596af0d0e3a4fbe3e26301 (patch) | |
tree | 0f6c993e13f6beb3808ddf9608aedc1c9e7f48f5 /Objects | |
parent | 238b1098ca5cd93c06916dc008161f35cdb6de0e (diff) | |
download | cpython-e0d6f605f2afbc923c596af0d0e3a4fbe3e26301.zip cpython-e0d6f605f2afbc923c596af0d0e3a4fbe3e26301.tar.gz cpython-e0d6f605f2afbc923c596af0d0e3a4fbe3e26301.tar.bz2 |
Fix extra-long line; also makes py3k match trunk here.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/floatobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 20fe956..ff5c0f6 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -183,7 +183,7 @@ PyFloat_FromString(PyObject *v) } else if (PyObject_AsCharBuffer(v, &s, &len)) { PyErr_SetString(PyExc_TypeError, - "float() argument must be a string or a number"); + "float() argument must be a string or a number"); return NULL; } last = s + len; |