commit | 6bf585e753b2e54dc3261a0029e2e16979418d6d | [log] [tgz] |
---|---|---|
author | Thomas Wouters <thomas@python.org> | Fri Jan 25 21:08:41 2008 +0000 |
committer | Thomas Wouters <thomas@python.org> | Fri Jan 25 21:08:41 2008 +0000 |
tree | ad658b7c888bf51211b7a12befd26aeed4a63f5f | |
parent | d92272e4a9b435faddba859fd37a34ce89f817a9 [diff] [blame] |
Fix typo in constant name.
diff --git a/Objects/listobject.c b/Objects/listobject.c index 7c63acf..c1cacaf 100644 --- a/Objects/listobject.c +++ b/Objects/listobject.c
@@ -672,7 +672,7 @@ return (PyObject *)self; } - if (size > Py_SSIZE_T_MAX / n) { + if (size > PY_SSIZE_T_MAX / n) { return PyErr_NoMemory(); }