mercurial/parsers.c
changeset 30169 5f7151e6de85
parent 30112 9b6ff0f940ed
child 30171 7a3b59f0329a
--- a/mercurial/parsers.c	Thu Oct 13 13:17:23 2016 +0200
+++ b/mercurial/parsers.c	Thu Oct 13 13:22:40 2016 +0200
@@ -20,7 +20,10 @@
  * 3 to compile. We should remove this once Python 3 support is fully
  * supported and proper types are used in the extensions themselves. */
 #define PyInt_Type PyLong_Type
+#define PyInt_Check PyLong_Check
 #define PyInt_FromLong PyLong_FromLong
+#define PyInt_FromSsize_t PyLong_FromSsize_t
+#define PyInt_AS_LONG PyLong_AS_LONG
 #define PyInt_AsLong PyLong_AsLong
 #endif