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: Add documentation for typing.Awaitable and friends
Type: Stage:
Components: Documentation Versions: Python 3.7, Python 3.6, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, gvanrossum, michael0x2a, python-dev
Priority: normal Keywords: patch

Created on 2016-09-09 18:40 by michael0x2a, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
document-awaitable.patch michael0x2a, 2016-09-09 18:40 review
Messages (2)
msg275379 - (view) Author: Michael Lee (michael0x2a) * Date: 2016-09-09 18:40
This patch adds documentation for Awaitable, AsyncIterable, and AsyncIterator to the typing module, mostly linking to the corresponding class in collections.abc.

It also briefly clarifies the documentation on generators to explain that you may use either Iterable or Iterator as the return type of a generator.
msg275389 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-09-09 18:54
New changeset eba19d4b2944 by Guido van Rossum in branch 'default':
Issue #28049: Add documentation for typing.Awaitable and friends.
https://hg.python.org/cpython/rev/eba19d4b2944
History
Date User Action Args
2022-04-11 14:58:36adminsetgithub: 72236
2016-09-09 18:55:46gvanrossumsetstatus: open -> closed
resolution: fixed
2016-09-09 18:54:47python-devsetnosy: + python-dev
messages: + msg275389
2016-09-09 18:40:51michael0x2acreate