We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In source code, PyInt_AS_LONG is used https://github.com/sagemath/cypari2/blob/master/cypari2/convert.pxd#L61C17-L61C30
PyInt_AS_LONG
However, this is Python 2 only https://docs.python.org/2.7/c-api/int.html#c.PyInt_AS_LONG
in Python 3 I think the replacement is PyLong_AsLong https://docs.python.org/3/c-api/long.html
The text was updated successfully, but these errors were encountered:
PyLong_AsLong in convert.pxd
066724a
see #169
42ad316
No branches or pull requests
In source code,
PyInt_AS_LONG
is used https://github.com/sagemath/cypari2/blob/master/cypari2/convert.pxd#L61C17-L61C30However, this is Python 2 only https://docs.python.org/2.7/c-api/int.html#c.PyInt_AS_LONG
in Python 3 I think the replacement is PyLong_AsLong https://docs.python.org/3/c-api/long.html
The text was updated successfully, but these errors were encountered: