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 ae3a7068d0a1e29f48305c9610a249eebe1be24a
2 changes: 1 addition & 1 deletion Doc/library/asyncio-policy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ implementation used by the asyncio event loop:
There is no noticeable overhead when handling a big number of children (*O(1)* each
time a child terminates) but stating a thread per process is not free.

asyncio uses this safe implementation by default.
This watcher is used by default.

.. versionadded:: 3.8

Expand Down
0