diff options
author | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-10-21 20:34:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-21 20:34:29 (GMT) |
commit | c3442fd8a7f6e34ba888efea085c3701b75c0b71 (patch) | |
tree | 2f3abebf9ee4ed291aa679ef564e447d343254a0 | |
parent | ec62b47ebc8f29007942c8e9f3f260af91ca58cb (diff) | |
download | cpython-c3442fd8a7f6e34ba888efea085c3701b75c0b71.zip cpython-c3442fd8a7f6e34ba888efea085c3701b75c0b71.tar.gz cpython-c3442fd8a7f6e34ba888efea085c3701b75c0b71.tar.bz2 |
bpo-41959: Fix grammar around class asyncio.MultiLoopChildWatcher text (GH-22580) (#22865)
While translating the following document to Spanish we found there is a grammar issue on the original documentation.
(cherry picked from commit caff2934f46510920a6169e192707d59e9c55f6b)
Co-authored-by: Raúl Cumplido <raulcumplido@gmail.com>
Co-authored-by: Raúl Cumplido <raulcumplido@gmail.com>
-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. |