diff options
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 25330a0..90838c9 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -8174,7 +8174,7 @@ posix_pipe2(PyObject *self, PyObject *arg) int fds[2]; int res; - flags = PyLong_AsLong(arg); + flags = _PyLong_AsInt(arg); if (flags == -1 && PyErr_Occurred()) return NULL; |