From: Raúl Cumplido Date: Wed, 21 Oct 2020 19:05:48 +0000 (+0200) Subject: bpo-41959: Fix grammar around class asyncio.MultiLoopChildWatcher text (GH-22580) X-Git-Tag: v3.10.0a2~118 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=caff2934f46510920a6169e192707d59e9c55f6b;p=thirdparty%2FPython%2Fcpython.git bpo-41959: Fix grammar around class asyncio.MultiLoopChildWatcher text (GH-22580) While translating the following document to Spanish we found there is a grammar issue on the original documentation. --- diff --git a/Doc/library/asyncio-policy.rst b/Doc/library/asyncio-policy.rst index d9d3232d2408..88e69ceff9ad 100644 --- a/Doc/library/asyncio-policy.rst +++ b/Doc/library/asyncio-policy.rst @@ -219,7 +219,7 @@ implementation used by the asyncio event loop: This implementation registers a :py:data:`SIGCHLD` signal handler on instantiation. That can break third-party code that installs a custom handler for - `SIGCHLD`. signal). + :py:data:`SIGCHLD` signal. The watcher avoids disrupting other code spawning processes by polling every process explicitly on a :py:data:`SIGCHLD` signal.