Skip to content
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

Add support for Python 3.13 #8198

Draft
wants to merge 10 commits into
base: develop
Choose a base branch
from
Draft

Conversation

rokm
Copy link
Member

@rokm rokm commented Jan 2, 2024

A glimpse into the horrors that near-future holds...

rokm added 10 commits May 24, 2024 12:07
Fix a segfault when we cannot allocate PyConfig structure due to
unsupported python version.
Add our copy of PyConfig structure definition for python 3.13,
and hook it into our abstraction API layer.
Starting with python 3.13, the global function calls
(e.g., `foo()`) opcode sequence contains a `LOAD_NAME` followed
by a `PUSH_NULL` opcode.

For a bit of historical context: prior to python 3.11, only
`LOAD_NAME` was emitted; with python 3.11, this changed to a
`PUSH_NULL` followed by the `LOAD_NAME`. However, our regex for
bytecode matching simply got away without matching this preceding
`PUSH_NULL`. Now that the `PUSH_NULL` is emitted after the
`LOAD_NAME`, we do need to somehow deal with it.

However, instead of trying to explicitly deal with the `PUSH_NULL`
opcodes (i.e., adjusting the regex and fixing the post-processing),
we can simply filter them out.
`lib2to3` was removed in python 3.13.
It looks like the re-introduced functional API from
importlib-resources 6.4.0 was also back-ported to python stdlib
in 3.13b1, but the sub-module that we use to detect presence of
this API was renamed from `functional` to `_functional`. Check
for both names, as importlib-resources also seems to be planning
to rename that module.
Looks like python 3.13 added two new attributes, `__firstlineno__`
and `__static_attributes__` that needs to be accounted for by
`assertNoMethods` and `assertHasExactMethods` helper methods,
used by `TestNode.test_subclasses` in `test_modulegraph.py`.

While we are at it, use `dict.pop()` to remove the elements insead
of checking for their presence and removing them via `del`. Also
move the clean-up part into common shared helper function.
It looks like that with python 3.13, the increase in number of
opened file handles in `test_pipe_leakage` on Windows is down from
six to three.

Spawning the child process now seems to open only one handle instead
of two.

Opening python file objects on top of the file descriptors (that are
in turn opened on top of the two pipe handles) does not seem to
open any additional handles anymore.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant