From d92272e4a9b435faddba859fd37a34ce89f817a9 Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Fri, 25 Jan 2008 19:51:24 +0000 Subject: [PATCH] Use the right (portable) definition of the max of a Py_ssize_t. --- Objects/listobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/listobject.c b/Objects/listobject.c index 10b099aecbe2..7c63acf1c8a0 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 > SSIZE_MAX / n) { + if (size > Py_SSIZE_T_MAX / n) { return PyErr_NoMemory(); } -- 2.47.3