Issue 32311: Implement asyncio.create_task() shortcut (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/76492

classification

Title: Implement asyncio.create_task() shortcut
Type: enhancement Stage: resolved
Components: asyncio, Library (Lib) Versions: Python 3.7

process

Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, yselivanov
Priority: normal Keywords: patch

Created on 2017-12-13 20:28 by asvetlov, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 4848 merged asvetlov,2017-12-13 20:29
PR 5244 closed asvetlov,2018-01-19 13:10
Messages (4)
msg308325 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2017-12-14 17:51
There's a lengthy discussion of this proposal over here: https://github.com/python/asyncio/issues/477 Guido there likes the idea of adding asyncio.create_task(), so let's add it.
msg308364 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2017-12-15 05:04
New changeset f74ef458ab1f502e4e60bd1502ac1dc0d2cb3847 by Andrew Svetlov in branch 'master': bpo-32311: Implement asyncio.create_task() shortcut (#4848) https://github.com/python/cpython/commit/f74ef458ab1f502e4e60bd1502ac1dc0d2cb3847
msg308366 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2017-12-15 06:54
Thank you, Andrew!
msg308375 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2017-12-15 10:19
Thanks for careful review!
History
Date User Action Args
2022-04-11 14:58:55 admin set github: 76492
2018-01-19 13:10:15 asvetlov set pull_requests: + <pull%5Frequest5089>
2017-12-15 10:19:30 asvetlov set messages: +
2017-12-15 06:54:28 yselivanov set messages: +
2017-12-15 05:27:34 asvetlov set status: open -> closedtype: enhancementresolution: fixedstage: patch review -> resolved
2017-12-15 05:04:44 asvetlov set messages: +
2017-12-14 17:51:24 yselivanov set messages: +
2017-12-13 20:29:27 asvetlov set keywords: + patchstage: patch reviewpull_requests: + <pull%5Frequest4737>
2017-12-13 20:28:03 asvetlov create