[Python-checkins] r60300 - python/branches/release25-maint/Objects/listobject.c

thomas.wouters python-checkins at python.org
Fri Jan 25 22:08:41 CET 2008


Author: thomas.wouters
Date: Fri Jan 25 22:08:41 2008
New Revision: 60300

Modified:
   python/branches/release25-maint/Objects/listobject.c
Log:

Fix typo in constant name.



Modified: python/branches/release25-maint/Objects/listobject.c
==============================================================================
--- python/branches/release25-maint/Objects/listobject.c	(original)
+++ python/branches/release25-maint/Objects/listobject.c	Fri Jan 25 22:08:41 2008
@@ -672,7 +672,7 @@
 		return (PyObject *)self;
 	}
 
-	if (size > Py_SSIZE_T_MAX / n) {
+	if (size > PY_SSIZE_T_MAX / n) {
 		return PyErr_NoMemory();
 	}
 


More information about the Python-checkins mailing list