Fix extra-long line;  also makes py3k match trunk here.
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 20fe956..ff5c0f6 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -183,7 +183,7 @@
 	}
 	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;