Try to fix a problem with large values on Win64.  Diagnosed by Thomas Heller
diff --git a/Python/getargs.c b/Python/getargs.c
index 8d90111..ac85a6d 100644
--- a/Python/getargs.c
+++ b/Python/getargs.c
@@ -669,7 +669,7 @@
 		Py_ssize_t ival;
 		if (float_argument_error(arg))
 			return converterr("integer<n>", arg, msgbuf, bufsize);
-		ival = PyInt_AsSsize_t(arg);
+		ival = PyNumber_AsSsize_t(arg);
 		if (ival == -1 && PyErr_Occurred())
 			return converterr("integer<n>", arg, msgbuf, bufsize);
 		*p = ival;