From: Thomas Wouters Date: Fri, 25 Jan 2008 21:08:41 +0000 (+0000) Subject: Fix typo in constant name. X-Git-Tag: v2.5.2c1~45 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6bf585e753b2e54dc3261a0029e2e16979418d6d;p=python Fix typo in constant name. --- diff --git a/Objects/listobject.c b/Objects/listobject.c index 7c63acf1c8..c1cacaf5ee 100644 --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -672,7 +672,7 @@ list_inplace_repeat(PyListObject *self, Py_ssize_t n) return (PyObject *)self; } - if (size > Py_SSIZE_T_MAX / n) { + if (size > PY_SSIZE_T_MAX / n) { return PyErr_NoMemory(); }