Fix extra-long line; also makes py3k match trunk here.

This commit is contained in:
Mark Dickinson 2009-10-26 21:12:50 +00:00
parent 238b1098ca
commit e0d6f605f2

View file

@ -183,7 +183,7 @@ PyFloat_FromString(PyObject *v)
} }
else if (PyObject_AsCharBuffer(v, &s, &len)) { else if (PyObject_AsCharBuffer(v, &s, &len)) {
PyErr_SetString(PyExc_TypeError, PyErr_SetString(PyExc_TypeError,
"float() argument must be a string or a number"); "float() argument must be a string or a number");
return NULL; return NULL;
} }
last = s + len; last = s + len;