Skip to content

Commit 1cc391d

Browse files
authored
gh-108224: Fix asyncio doc inconsistency (#108230)
(Spawning subprocesses does not require the event loop to run in the main thread -- only signal handling does.)
1 parent 0dd3fc2 commit 1cc391d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/asyncio-dev.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ To schedule a coroutine object from a different OS thread, the
9999
# Wait for the result:
100100
result = future.result()
101101

102-
To handle signals and to execute subprocesses, the event loop must be
102+
To handle signals the event loop must be
103103
run in the main thread.
104104

105105
The :meth:`loop.run_in_executor` method can be used with a

0 commit comments

Comments
 (0)