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: Rewrite asyncio docs to use async/await syntax
Type: Stage: resolved
Components: asyncio, Documentation Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: asvetlov, docs@python, yselivanov
Priority: normal Keywords: patch

Created on 2017-12-09 10:06 by asvetlov, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 4779 merged asvetlov, 2017-12-10 09:03
PR 8674 merged termim, 2018-08-04 23:05
Messages (2)
msg307889 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2017-12-09 10:06
https://bugs.python.org/issue32193 switched asyncio implementation to async/await syntax.

We need to update documentation as well.
msg308052 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2017-12-11 15:35
New changeset 8874342cf332c3aa3d845155cc4b41b00c2d9e9d by Andrew Svetlov in branch 'master':
bpo-32258: Replace 'yield from' to 'await' in asyncio docs (#4779)
https://github.com/python/cpython/commit/8874342cf332c3aa3d845155cc4b41b00c2d9e9d
History
Date User Action Args
2022-04-11 14:58:55adminsetgithub: 76439
2018-08-04 23:05:34termimsetpull_requests: + pull_request8168
2017-12-11 16:00:46asvetlovsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2017-12-11 15:35:55asvetlovsetmessages: + msg308052
2017-12-10 09:03:12asvetlovsetkeywords: + patch
stage: patch review
pull_requests: + pull_request4680
2017-12-09 10:30:26serhiy.storchakasettitle: Rewrite ayncio docs to use async/await syntax -> Rewrite asyncio docs to use async/await syntax
2017-12-09 10:06:15asvetlovcreate