Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h
diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c
index 63fb1f1..a5d789a 100644
--- a/Modules/gcmodule.c
+++ b/Modules/gcmodule.c
@@ -944,7 +944,7 @@
 		collecting = 0;
 	}
 
-	return PyInt_FromSsize_t(n);
+	return PyLong_FromSsize_t(n);
 }
 
 PyDoc_STRVAR(gc_set_debug__doc__,