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: Typo in asyncio eventloop documentation
Type: Stage: resolved
Components: Documentation Versions: Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: asvetlov, docs@python, miss-islington, naglis
Priority: normal Keywords: patch

Created on 2018-12-03 22:30 by naglis, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 10880 merged naglis, 2018-12-03 22:33
PR 10884 merged miss-islington, 2018-12-04 07:31
Messages (6)
msg330989 - (view) Author: Naglis Jonaitis (naglis) * Date: 2018-12-03 22:30
loop.add_writer and loop.add_signal_handler have *callback* in their signatures, but in their documentation regarding functools.partial usage the function is referred to as *func*.
msg330990 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2018-12-03 22:36
Would you create a PR with a fix?
msg330991 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2018-12-03 22:36
Sorry, you did already
msg331012 - (view) Author: miss-islington (miss-islington) Date: 2018-12-04 07:31
New changeset 17473347942353946fe455f797a2197cb89c1090 by Miss Islington (bot) (Naglis) in branch 'master':
bpo-35395: fix typos in asyncio eventloop documentation (GH-10880)
https://github.com/python/cpython/commit/17473347942353946fe455f797a2197cb89c1090
msg331013 - (view) Author: miss-islington (miss-islington) Date: 2018-12-04 07:36
New changeset 6627d3ae1e151095fda4ec2592c7cfb759f23669 by Miss Islington (bot) in branch '3.7':
bpo-35395: fix typos in asyncio eventloop documentation (GH-10880)
https://github.com/python/cpython/commit/6627d3ae1e151095fda4ec2592c7cfb759f23669
msg331020 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2018-12-04 09:10
Thanks Naglis
History
Date User Action Args
2022-04-11 14:59:08adminsetgithub: 79576
2018-12-04 09:10:33asvetlovsetstatus: open -> closed
versions: + Python 3.7, Python 3.8
messages: + msg331020

resolution: fixed
stage: patch review -> resolved
2018-12-04 07:36:34miss-islingtonsetmessages: + msg331013
2018-12-04 07:31:29miss-islingtonsetpull_requests: + pull_request10123
2018-12-04 07:31:20miss-islingtonsetnosy: + miss-islington
messages: + msg331012
2018-12-03 22:36:51asvetlovsetmessages: + msg330991
2018-12-03 22:36:17asvetlovsetnosy: + asvetlov
messages: + msg330990
2018-12-03 22:33:12naglissetkeywords: + patch
stage: patch review
pull_requests: + pull_request10119
2018-12-03 22:30:52nagliscreate