summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/base_tasks.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-39764: Make Task.get_stack accept ag_frame (#18669)Lidi Zheng2020-03-021-3/+10
| | | | Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
* bpo-34270: Make it possible to name asyncio tasks (GH-8547)Alex Grönholm2018-08-081-2/+4
| | | Co-authored-by: Antti Haapala <antti.haapala@anttipatterns.com>
* bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)Yury Selivanov2017-12-101-7/+7
|
* Issue #28544: Implement asyncio.Task in C.Yury Selivanov2016-10-281-0/+76
This implementation provides additional 10-20% speed boost for asyncio programs. The patch also fixes _asynciomodule.c to use Arguments Clinic, and makes '_schedule_callbacks' an overridable method (as it was in 3.5).