From e0d6f605f2afbc923c596af0d0e3a4fbe3e26301 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Mon, 26 Oct 2009 21:12:50 +0000 Subject: [PATCH] Fix extra-long line; also makes py3k match trunk here. --- Objects/floatobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 20fe956f5e4..ff5c0f6a699 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;