summaryrefslogtreecommitdiff
path: root/Modules/clinic/_asynciomodule.c.h
Commit message (Collapse)AuthorAgeFilesLines
* Run Argument Clinic: METH_VARARGS=>METH_FASTCALLVictor Stinner2017-01-171-1/+1
| | | | | Issue #29286. Run Argument Clinic to get the new faster METH_FASTCALL calling convention for functions using only positional arguments.
* Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywordsVictor Stinner2017-01-171-6/+6
| | | | Issue #29286.
* Issue #28544: Implement asyncio.Task in C.Yury Selivanov2016-10-281-0/+520
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).