[Python-checkins] r43563 - python/trunk/Modules/arraymodule.c
neal.norwitz
python-checkins at python.org
Mon Apr 3 06:46:29 CEST 2006
Author: neal.norwitz
Date: Mon Apr 3 06:46:28 2006
New Revision: 43563
Modified:
python/trunk/Modules/arraymodule.c
Log:
Whitespace: break long line
Modified: python/trunk/Modules/arraymodule.c
==============================================================================
--- python/trunk/Modules/arraymodule.c (original)
+++ python/trunk/Modules/arraymodule.c Mon Apr 3 06:46:28 2006
@@ -186,7 +186,8 @@
if (!PyArg_Parse(v, "u#;array item must be unicode character", &p, &len))
return -1;
if (len != 1) {
- PyErr_SetString(PyExc_TypeError, "array item must be unicode character");
+ PyErr_SetString(PyExc_TypeError,
+ "array item must be unicode character");
return -1;
}
if (i >= 0)
More information about the Python-checkins
mailing list