[Python-checkins] r75732 - python/branches/py3k/Objects/floatobject.c

mark.dickinson python-checkins at python.org
Mon Oct 26 22:12:51 CET 2009


Author: mark.dickinson
Date: Mon Oct 26 22:12:50 2009
New Revision: 75732

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

Modified:
   python/branches/py3k/Objects/floatobject.c

Modified: python/branches/py3k/Objects/floatobject.c
==============================================================================
--- python/branches/py3k/Objects/floatobject.c	(original)
+++ python/branches/py3k/Objects/floatobject.c	Mon Oct 26 22:12:50 2009
@@ -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;


More information about the Python-checkins mailing list