Skip to content

Commit 42ad316

Browse files
fchapotondimpase
authored andcommitted
PyLong_AsLong in convert.pxd
see #169
1 parent daed295 commit 42ad316

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cypari2/convert.pxd

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .paridecl cimport (GEN, t_COMPLEX, dbltor, real_0_bit, stoi, cgetg,
22
set_gel, gen_0)
33
from .gen cimport Gen
4-
from cpython.int cimport PyInt_AS_LONG
4+
from cpython.long cimport PyLong_AsLong
55
from cpython.float cimport PyFloat_AS_DOUBLE
66
from cpython.complex cimport PyComplex_RealAsDouble, PyComplex_ImagAsDouble
77
from cpython.longintrepr cimport py_long
@@ -58,7 +58,7 @@ cdef inline GEN doubles_to_COMPLEX(double re, double im) noexcept:
5858
# Conversion Python -> PARI
5959

6060
cdef inline GEN PyInt_AS_GEN(x) except? NULL:
61-
return stoi(PyInt_AS_LONG(x))
61+
return stoi(PyLong_AsLong(x))
6262

6363
cdef GEN PyLong_AS_GEN(py_long x) noexcept
6464

0 commit comments

Comments
 (0)