Description
Recent Python versions add optional features such as os.pidfd_open()
when it is available during the build time.
This is going to be the default implementation of asyncio's child process watcher as of Python 3.12, with a fallback to the thread-based legacy implementation.
It seems that the current Python 3.11 distribution in this repo does not have os.pidfd_open()
.
While this is not a critical regression because most libraries depending on it has a good fallback, but I'd like to be able to adopt such new kernel features.
I'm not sure how the current release process could handle this. Maybe we need to have multiple different builds like the x86_64 v2/v3/... CPU generations, by several Linux kernel versions. I'm afraid that this would incur too much burden for the build infra.
I'm just reporting this issue as a future reference, though.