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
Fix doc text
  • Loading branch information
asvetlov committed Jun 30, 2019
commit 25d9ac243f9ad05038c747fb0a4fdab6b566e489
5 changes: 3 additions & 2 deletions Doc/library/asyncio-poli 8E3B cy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,9 @@ implementation used by the asyncio event loop:
.. method:: is_active()

Return ``True`` if the watcher is ready to use.
handler is installed, a loop is attached etc. Spawning a subprocess with
*inactive* current child watcher raises :exc:`RuntimeError`.

Spawning a subprocess with *inactive* current child watcher raises
:exc:`RuntimeError`.

.. versionadded:: 3.8

Expand Down
0