8000 bpo-35621: Support running subprocesses in asyncio when loop is executed in non-main thread by asvetlov · Pull Request #14344 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-35621: Support running subprocesses in asyncio when loop is executed in non-main thread #14344

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

Merged
merged 17 commits into from
Jun 30, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Doc/library/asyncio-policy.rst
Co-Authored-By: Yury Selivanov <yury@magic.io>
  • Loading branch information
asvetlov and 1st1 authored Jun 30, 2019
commit 6e6a783fdcb3360ddb127378bddde3204be07fa2
2 changes: 1 addition & 1 deletion Doc/library/asyncio-policy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ implementation used by the asyncio event loop:
.. class:: MultiLoopChildWatcher

This implementation registers a :py:data:`SIGCHLD` signal handler on
instantiation (which may conflict with other code that install own handler for this
instantiation. That can break third-party code that installs a custom handler for `SIGCHLD`.
signal).

The watcher avoids disrupting other code spawning processes
Expand Down
0