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: Asyncio documentation have a error
Type: enhancement Stage: resolved
Components: asyncio Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, docs@python, hzhilamp@163.com, miss-islington, yselivanov
Priority: normal Keywords: patch

Created on 2018-09-20 04:55 by hzhilamp@163.com, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 9437 merged yselivanov, 2018-09-20 05:06
PR 9438 merged miss-islington, 2018-09-20 05:17
Messages (4)
msg325838 - (view) Author: lanzhiwang (hzhilamp@163.com) Date: 2018-09-20 04:55
https://docs.python.org/3.7/library/asyncio-llapi-index.html

loop.stop() Close the event loop.
fix
loop.close() Close the event loop.
msg325840 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-09-20 05:17
New changeset ffef50f1f5907e5f0f175b12088d3e509011f126 by Yury Selivanov in branch 'master':
bpo-34746: Fix stop -> close (GH-9437)
https://github.com/python/cpython/commit/ffef50f1f5907e5f0f175b12088d3e509011f126
msg325841 - (view) Author: miss-islington (miss-islington) Date: 2018-09-20 05:21
New changeset 4fe8dc68577f9e22aaf24db08fb6647277c42d4c by Miss Islington (bot) in branch '3.7':
bpo-34746: Fix stop -> close (GH-9437)
https://github.com/python/cpython/commit/4fe8dc68577f9e22aaf24db08fb6647277c42d4c
msg325842 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-09-20 05:24
Thanks for filing the bug!
History
Date User Action Args
2022-04-11 14:59:06adminsetgithub: 78927
2018-09-20 05:24:41yselivanovsetstatus: open -> closed
resolution: fixed
messages: + msg325842

stage: patch review -> resolved
2018-09-20 05:21:12miss-islingtonsetnosy: + miss-islington
messages: + msg325841
2018-09-20 05:17:28miss-islingtonsetpull_requests: + pull_request8852
2018-09-20 05:17:14yselivanovsetmessages: + msg325840
2018-09-20 05:06:59yselivanovsetkeywords: + patch
stage: patch review
pull_requests: + pull_request8851
2018-09-20 04:55:09hzhilamp@163.comcreate