diff options
author | Raúl Cumplido <raulcumplido@gmail.com> | 2020-10-21 19:05:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-21 19:05:48 (GMT) |
commit | caff2934f46510920a6169e192707d59e9c55f6b (patch) | |
tree | e3c3d785be93376b9637c494351d0328884777f9 /Doc/library/asyncio-policy.rst | |
parent | c60394c7fc9cc09b16e9675a3eeb5844b6d8523f (diff) | |
download | cpython-caff2934f46510920a6169e192707d59e9c55f6b.zip cpython-caff2934f46510920a6169e192707d59e9c55f6b.tar.gz cpython-caff2934f46510920a6169e192707d59e9c55f6b.tar.bz2 |
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.
Diffstat (limited to 'Doc/library/asyncio-policy.rst')
-rw-r--r-- | Doc/library/asyncio-policy.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-policy.rst b/Doc/library/asyncio-policy.rst index d9d3232..88e69ce 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. |