From: Mark Dickinson Date: Mon, 26 Oct 2009 21:12:50 +0000 (+0000) Subject: Fix extra-long line; also makes py3k match trunk here. X-Git-Tag: v3.2a1~2317 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e0d6f605f2afbc923c596af0d0e3a4fbe3e26301;p=thirdparty%2FPython%2Fcpython.git Fix extra-long line; also makes py3k match trunk here. --- diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 20fe956f5e4a..ff5c0f6a699c 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;