summaryrefslogtreecommitdiff
path: root/Objects/floatobject.c
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-10-26 21:12:50 +0000
committerMark Dickinson <dickinsm@gmail.com>2009-10-26 21:12:50 +0000
commite0d6f605f2afbc923c596af0d0e3a4fbe3e26301 (patch)
tree0f6c993e13f6beb3808ddf9608aedc1c9e7f48f5 /Objects/floatobject.c
parent238b1098ca5cd93c06916dc008161f35cdb6de0e (diff)
downloadcpython-git-e0d6f605f2afbc923c596af0d0e3a4fbe3e26301.tar.gz
Fix extra-long line; also makes py3k match trunk here.
Diffstat (limited to 'Objects/floatobject.c')
-rw-r--r--Objects/floatobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 20fe956f5e..ff5c0f6a69 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;