Fix typo in constant name.

This commit is contained in:
Thomas Wouters 2008-01-25 21:08:41 +00:00
parent d92272e4a9
commit 6bf585e753
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}