Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h
diff --git a/Modules/zipimport.c b/Modules/zipimport.c
index 3a19ab6..5f41e8d 100644
--- a/Modules/zipimport.c
+++ b/Modules/zipimport.c
@@ -1028,8 +1028,8 @@
/* fetch the time stamp of the .py file for comparison
with an embedded pyc time stamp */
int time, date;
- time = PyInt_AsLong(PyTuple_GetItem(toc_entry, 5));
- date = PyInt_AsLong(PyTuple_GetItem(toc_entry, 6));
+ time = PyLong_AsLong(PyTuple_GetItem(toc_entry, 5));
+ date = PyLong_AsLong(PyTuple_GetItem(toc_entry, 6));
mtime = parse_dostime(time, date);
}
path[lastchar] = savechar;