[Python-3000-checkins] r64718 - python/branches/py3k/Python/modsupport.c

amaury.forgeotdarc python-3000-checkins at python.org
Fri Jul 4 23:34:47 CEST 2008


Author: amaury.forgeotdarc
Date: Fri Jul  4 23:34:47 2008
New Revision: 64718

Log:
Correct a typo during previous checkin.


Modified:
   python/branches/py3k/Python/modsupport.c

Modified: python/branches/py3k/Python/modsupport.c
==============================================================================
--- python/branches/py3k/Python/modsupport.c	(original)
+++ python/branches/py3k/Python/modsupport.c	Fri Jul  4 23:34:47 2008
@@ -296,7 +296,7 @@
 			int i = va_arg(*p_va, int);
 			if (i < 0 || i > PyUnicode_GetMax()) {
 				PyErr_SetString(PyExc_OverflowError,
-				                "%c arg not in range(0x110000)";
+				                "%c arg not in range(0x110000)");
 				return NULL;
 			}
 			return PyUnicode_FromOrdinal(i);


More information about the Python-3000-checkins mailing list