Use the right (portable) definition of the max of a Py_ssize_t.
diff --git a/Objects/listobject.c b/Objects/listobject.c
index 10b099a..7c63acf 100644
--- a/Objects/listobject.c
+++ b/Objects/listobject.c
@@ -672,7 +672,7 @@
 		return (PyObject *)self;
 	}
 
-	if (size > SSIZE_MAX / n) {
+	if (size > Py_SSIZE_T_MAX / n) {
 		return PyErr_NoMemory();
 	}