Skip to content

Commit f51cdfa

Browse files
[3.12] gh-108224: Fix asyncio doc inconsistency (GH-108230) (#108231)
gh-108224: Fix asyncio doc inconsistency (GH-108230) (Spawning subprocesses does not require the event loop to run in the main thread -- only signal handling does.) (cherry picked from commit 1cc391d) Co-authored-by: temach <[email protected]>
1 parent 78a2a8c commit f51cdfa

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)