-
-
Notifications
You must be signed in to change notification settings - Fork 31k
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
Rewrite asyncio subprocesses without child watchers #120804
Labels
Comments
kumaraditya303
added a commit
that referenced
this issue
Jun 21, 2024
…ldWatcher from asyncio (#120805) Remove SafeChildWatcher, FastChildWatcher and MultiLoopChildWatcher from asyncio. These child watchers have been deprecated since Python 3.12. The tests are also removed and some more tests will be added after the rewrite of child watchers.
This was referenced Jun 21, 2024
With asyncio subprocess, send_signal() and the child process watcher will both call waitpid()
#87744
Closed
kumaraditya303
added a commit
that referenced
this issue
Jun 23, 2024
This was referenced Jun 23, 2024
kumaraditya303
added a commit
that referenced
this issue
Jun 23, 2024
…stractChildWatcher` from asyncio APIs (#120893)
kumaraditya303
added a commit
that referenced
this issue
Jun 23, 2024
Co-authored-by: Alex Waygood <alex.waygood@gmail.com>
kumaraditya303
added a commit
that referenced
this issue
Jun 28, 2024
mrahtz
pushed a commit
to mrahtz/cpython
that referenced
this issue
Jun 30, 2024
…oopChildWatcher from asyncio (python#120805) Remove SafeChildWatcher, FastChildWatcher and MultiLoopChildWatcher from asyncio. These child watchers have been deprecated since Python 3.12. The tests are also removed and some more tests will be added after the rewrite of child watchers.
mrahtz
pushed a commit
to mrahtz/cpython
that referenced
this issue
Jun 30, 2024
…rom asyncio (python#120818)
mrahtz
pushed a commit
to mrahtz/cpython
that referenced
this issue
Jun 30, 2024
…nd `AbstractChildWatcher` from asyncio APIs (python#120893)
mrahtz
pushed a commit
to mrahtz/cpython
that referenced
this issue
Jun 30, 2024
…hon#120895) Co-authored-by: Alex Waygood <alex.waygood@gmail.com>
mrahtz
pushed a commit
to mrahtz/cpython
that referenced
this issue
Jun 30, 2024
…rs implementation in asyncio (python#121124)
noahbkim
pushed a commit
to hudson-trading/cpython
that referenced
this issue
Jul 11, 2024
…oopChildWatcher from asyncio (python#120805) Remove SafeChildWatcher, FastChildWatcher and MultiLoopChildWatcher from asyncio. These child watchers have been deprecated since Python 3.12. The tests are also removed and some more tests will be added after the rewrite of child watchers.
noahbkim
pushed a commit
to hudson-trading/cpython
that referenced
this issue
Jul 11, 2024
…rom asyncio (python#120818)
noahbkim
pushed a commit
to hudson-trading/cpython
that referenced
this issue
Jul 11, 2024
…nd `AbstractChildWatcher` from asyncio APIs (python#120893)
noahbkim
pushed a commit
to hudson-trading/cpython
that referenced
this issue
Jul 11, 2024
…hon#120895) Co-authored-by: Alex Waygood <alex.waygood@gmail.com>
noahbkim
pushed a commit
to hudson-trading/cpython
that referenced
this issue
Jul 11, 2024
…rs implementation in asyncio (python#121124)
estyxx
pushed a commit
to estyxx/cpython
that referenced
this issue
Jul 17, 2024
…oopChildWatcher from asyncio (python#120805) Remove SafeChildWatcher, FastChildWatcher and MultiLoopChildWatcher from asyncio. These child watchers have been deprecated since Python 3.12. The tests are also removed and some more tests will be added after the rewrite of child watchers.
estyxx
pushed a commit
to estyxx/cpython
that referenced
this issue
Jul 17, 2024
…rom asyncio (python#120818)
estyxx
pushed a commit
to estyxx/cpython
that referenced
this issue
Jul 17, 2024
…nd `AbstractChildWatcher` from asyncio APIs (python#120893)
estyxx
pushed a commit
to estyxx/cpython
that referenced
this issue
Jul 17, 2024
…hon#120895) Co-authored-by: Alex Waygood <alex.waygood@gmail.com>
estyxx
pushed a commit
to estyxx/cpython
that referenced
this issue
Jul 17, 2024
…rs implementation in asyncio (python#121124)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tasks
Each task item will be done in a separate PR and news entry will be added when all of this is done otherwise it will be confusing for users.
Linked PRs
get_child_watcher
andset_child_watcher
from asyncio #120818PidfdChildWatcher
,ThreadedChildWatcher
andAbstractChildWatcher
from asyncio APIs #120893The text was updated successfully, but these errors were encountered: