Based on discussion with Martin and Thomas on python-checkins
add a Py_SAFE_DOWNCAST() to make the code correct.
diff --git a/Python/getargs.c b/Python/getargs.c
index 530dffb..fbf5cef 100644
--- a/Python/getargs.c
+++ b/Python/getargs.c
@@ -284,7 +284,7 @@
 				      : len < min ? "at least" : "at most",
 				      len < min ? min : max,
 				      (len < min ? min : max) == 1 ? "" : "s",
-				      (long)len);
+				      Py_SAFE_DOWNCAST(len, Py_ssize_t, long));
 			message = msgbuf;
 		}
 		PyErr_SetString(PyExc_TypeError, message);