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: grammatical error in asyncio stream documentation
Type: Stage: resolved
Components: Documentation Versions: Python 3.6, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Ryan Stuart, docs@python, ned.deily, python-dev
Priority: normal Keywords: patch

Created on 2016-02-16 01:44 by Ryan Stuart, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
asyncio-stream_docs.patch Ryan Stuart, 2016-02-16 01:44 Patch to fix the documentation review
Messages (3)
msg260339 - (view) Author: Ryan Stuart (Ryan Stuart) * Date: 2016-02-16 01:44
The note for 18.5.5.1. Stream functions is missing a word. It should read "Note The top-level functions in this module are meant **as** convenience wrappers only; there’s really nothing special there, and if they don’t do exactly what you want, feel free to copy their code."
msg260340 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-02-16 02:28
New changeset 8ee91cb2e2a4 by Ned Deily in branch '3.5':
Issue #26368: fix typo in asynchio stream doc, reported by Ryan Stuart.
https://hg.python.org/cpython/rev/8ee91cb2e2a4

New changeset 12502327d2c0 by Ned Deily in branch 'default':
Issue #26368: fix typo in asynchio stream doc, reported by Ryan Stuart.
https://hg.python.org/cpython/rev/12502327d2c0
msg260341 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2016-02-16 02:30
Thanks for the report, Ryan!
History
Date User Action Args
2022-04-11 14:58:27adminsetgithub: 70556
2016-02-16 02:30:14ned.deilysetstatus: open -> closed


title: grammatical error in documentation -> grammatical error in asyncio stream documentation
nosy: + ned.deily
versions: - Python 3.4
messages: + msg260341
resolution: fixed
stage: resolved
2016-02-16 02:28:45python-devsetnosy: + python-dev
messages: + msg260340
2016-02-16 01:44:15Ryan Stuartcreate