This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Doc/library/asyncio-policy.rst grammar error
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.10, Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: asvetlov, docs@python, miss-islington, raulcd
Priority: normal Keywords: patch

Created on 2020-10-06 13:51 by raulcd, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 22580 merged raulcd, 2020-10-06 13:55
PR 22865 merged miss-islington, 2020-10-21 19:06
PR 22866 merged miss-islington, 2020-10-21 19:06
Messages (4)
msg378124 - (view) Author: Raúl Cumplido (raulcd) * Date: 2020-10-06 13:51
The Doc/library/asyncio-policy.rst file contains the following:
```
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).
```
The latest . and ) are incorrect.
msg379237 - (view) Author: miss-islington (miss-islington) Date: 2020-10-21 19:05
New changeset caff2934f46510920a6169e192707d59e9c55f6b by Raúl Cumplido in branch 'master':
bpo-41959: Fix grammar around class asyncio.MultiLoopChildWatcher text (GH-22580)
https://github.com/python/cpython/commit/caff2934f46510920a6169e192707d59e9c55f6b
msg379248 - (view) Author: miss-islington (miss-islington) Date: 2020-10-21 20:33
New changeset ba666747af83aa465ffa8b55efbbb7f992647e12 by Miss Skeleton (bot) in branch '3.8':
[3.8] bpo-41959: Fix grammar around class asyncio.MultiLoopChildWatcher text (GH-22580) (GH-22866)
https://github.com/python/cpython/commit/ba666747af83aa465ffa8b55efbbb7f992647e12
msg379250 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2020-10-21 20:34
New changeset c3442fd8a7f6e34ba888efea085c3701b75c0b71 by Miss Skeleton (bot) in branch '3.9':
bpo-41959: Fix grammar around class asyncio.MultiLoopChildWatcher text (GH-22580) (#22865)
https://github.com/python/cpython/commit/c3442fd8a7f6e34ba888efea085c3701b75c0b71
History
Date User Action Args
2022-04-11 14:59:36adminsetgithub: 86125
2020-10-21 20:41:17asvetlovsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2020-10-21 20:34:35asvetlovsetnosy: + asvetlov
messages: + msg379250
2020-10-21 20:33:27miss-islingtonsetmessages: + msg379248
2020-10-21 19:06:11miss-islingtonsetpull_requests: + pull_request21808
2020-10-21 19:06:03miss-islingtonsetpull_requests: + pull_request21807
2020-10-21 19:05:57miss-islingtonsetnosy: + miss-islington
messages: + msg379237
2020-10-06 13:55:49raulcdsetkeywords: + patch
stage: patch review
pull_requests: + pull_request21575
2020-10-06 13:51:04raulcdcreate