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
1 changed files with 1 additions and 1 deletions

View File

@ -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;