-
Notifications
You must be signed in to change notification settings - Fork 820
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
python: Objects/unicodeobject.c:15052: intern_static: Assertion '_Py_IsImmortal(s)' failed.
in various projects with pyo3-0.21.2 and Python 3.13.0b3
#4309
Comments
CC @encukou, @ericsnowcurrently in case they have any insight what's wrong. |
python: Objects/unicodeobject.c:15052: intern_static: Assertion
_Py_IsImmortal(s)' failed.` in various projects with pyo3-0.21.2 and Python 3.13.0b3python: Objects/unicodeobject.c:15052: intern_static: Assertion '_Py_IsImmortal(s)' failed.
in various projects with pyo3-0.21.2 and Python 3.13.0b3
Thank you for testing with assertions!
A stable ABI extension is allowed to do that (before 3.12 stable ABI; this uses 3.8 AFAIK). |
Thanks for investigating @encukou! I think it's correct in your analysis that we are calling PyO3 0.21.2 doesn't support the version-specific Python 3.13 API, so it should be the case that this has been built using ABI3 "forward compatibility". |
Immortal objects are an implementation detail, so ideally you should call Except if you're using stable ABI. Then you can adjust (Outside the stable ABI, you could instead reimplement the |
Thank you for investigating, and for the pull request. I'm going to test it today. |
The CPython PR is up at python/cpython#121358. |
Yep that's pretty much exactly the situation. By the optimization I meant in this case I think PyO3 shouldn't need to call |
Bug Description
After upgrading to Python 3.13.0b3, various projects that previously worked with Python 3.13.0b2 suddenly started crashing with assertion error. For example,
pyproject-fmt-rust
:I've been able to bisect it to python/cpython@9769b7a. Unfortunately, I've been only able to test it against pyo3-0.21.2, as porting that package to 0.22.0 is above my current skills. However, a quick search through the repository doesn't reveal anything obviously relevant. If I missed something, I'm really sorry about that.
Steps to Reproduce
--with-assertions
.git clone https://github.com/tox-dev/pyproject-fmt-rust/
cd pyproject-fmt-rust
~/git/cpython/python -m venv .venv
,. .venv/bin/activate
).pip install -e .
python -c "import pyproject_fmt_rust"
Backtrace
Your operating system and version
Gentoo Linux amd64
Your Python version (
python --version
)Python 3.13.0b3
Your Rust version (
rustc --version
)rustc 1.79.0 (129f3b996 2024-06-10) (gentoo)
Your PyO3 version
0.21.2
How did you install python? Did you use a virtualenv?
Reproduced both with Python build from source with
--with-assertions
(as part ofgit bisect
) and 3.13.0b3 from Gentoo ebuild. Virtualenv for testing as noted above.Additional Info
No response
The text was updated successfully, but these errors were encountered: