-
-
Notifications
You must be signed in to change notification settings - Fork 343
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
Remaining test issues with Python 3.13.0b1: not ki_protected, pathlib.Path.resolve siganture #3004
Comments
This failure is easy to understand for me. The rest, not so much. |
Interesting, I don't remember the KI changes in the alpha! Maybe worth bisecting to figure out what exactly changed? |
Let me restest with a6... 625 passed, 77 skipped in 9.85s Working on git bisest ... |
I bisected and KI seems to be failing due to PEP 667 (specifically python/cpython#115153). Which kind of makes sense because we stuff KI protection metadata in weird function places, but I'm still surprised. |
The Pathlib module name thing is python/cpython@d8d9491 |
OK, so KI is cause this no longer works: Before: >>> import sys
>>> def g():
... print(sys._getframe(1).f_locals)
...
>>> def f():
... locals()["name"] = True
... g()
...
>>> f()
{'name': True}
>>> exit() Now: >>> import sys
>>> def g():
... print(sys._getframe(1).f_locals)
...
>>> def f():
... locals()["name"] = True
... g()
...
>>> f()
{}
>>> exit() This is documented so we just need to fix this. I think one way would be to assign to |
Hello. After #2959 I still see the following test failures with Python 3.13.0b1:
The text was updated successfully, but these errors were encountered: