Commit 6bf585e7 authored by Thomas Wouters's avatar Thomas Wouters

Fix typo in constant name.

parent d92272e4
......@@ -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();
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment