-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
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
Segfault with Python 3.13.0b1 #116
Comments
Note that this
reflects the fact that Note also that in Fedora Rawhide, implicit function declarations like this are errors rather than warnings. What’s more, replacing |
`_PyLong_Format` is in Python’s internal, private API; `PyNumber_ToBase` the Stable API, and is a fairly thin wrapper around `_PyLong_Format` with a bit of extra error checking. Fixes MagicStack#116.
`_PyLong_Format` is in Python’s internal, private API; `PyNumber_ToBase` belongs to the Stable API, and is a fairly thin wrapper around `_PyLong_Format` with a bit of extra error checking. Fixes MagicStack#116.
I just tested with Python 3.13.0rc2 and immutables==0.20. I can confirm that the issue is still present. |
Changes ======= * Drop typing_extensions dependency (#114) (by @nicoddemus in 3ba46f7 for #114) Fixes ===== * Replace `_PyLong_Format` with `PyNumber_ToBase` (#118) (by @musicinmybrain in 81d7c92 for #116)
Thank you! |
The text was updated successfully, but these errors were encountered: