mercurial/osutil.c
changeset 30111 a989fa78dafa
parent 30110 79f438f5dd02
child 30409 0852161588c6
--- a/mercurial/osutil.c	Sun Oct 09 13:41:18 2016 +0200
+++ b/mercurial/osutil.c	Sun Oct 09 13:47:46 2016 +0200
@@ -63,11 +63,19 @@
 };
 #endif
 
+#ifdef IS_PY3K
+#define listdir_slot(name) \
+	static PyObject *listdir_stat_##name(PyObject *self, void *x) \
+	{ \
+		return PyLong_FromLong(((struct listdir_stat *)self)->st.name); \
+	}
+#else
 #define listdir_slot(name) \
 	static PyObject *listdir_stat_##name(PyObject *self, void *x) \
 	{ \
 		return PyInt_FromLong(((struct listdir_stat *)self)->st.name); \
 	}
+#endif
 
 listdir_slot(st_dev)
 listdir_slot(st_mode)