summaryrefslogtreecommitdiff
path: root/src/winrand.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/winrand.c')
-rw-r--r--src/winrand.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/winrand.c b/src/winrand.c
index 56aa450..0528972 100644
--- a/src/winrand.c
+++ b/src/winrand.c
@@ -64,7 +64,6 @@ static PyTypeObject WRtype;
#else
staticforward PyTypeObject WRtype;
#define is_WRobject(v) ((v)->ob_type == &WRtype)
-#define PyLong_FromLong PyInt_FromLong /* for Python 2.x */
#endif
static void
@@ -216,7 +215,7 @@ WRgetattr(PyObject *s, char *name)
#else
if (strcmp(name, "hcp") == 0)
#endif
- return PyLong_FromLong((long) self->hcp);
+ return PyInt_FromLong((long) self->hcp);
#ifdef IS_PY3K
generic:
return PyObject_GenericGetAttr(s, attr);