summaryrefslogtreecommitdiffstats
path: root/Modules/_asynciomodule.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-31185: Fixed miscellaneous errors in asyncio speedup module. (#3076)Serhiy Storchaka2017-09-031-207/+206
* bpo-31061: fix crash in asyncio speedup module (GH-2966)Alexander Mohr2017-08-021-0/+4
* bpo-30828: Fix out of bounds write in `asyncio.CFuture.remove_done_callback()...Yury Selivanov2017-07-051-3/+10
* bpo-30508: Don't log exceptions if Task/Future "cancel()" method called (#2050)Yury Selivanov2017-06-111-1/+17
* bpo-30048: asyncio: fix Task.cancel() was ignored. (GH-1097)INADA Naoki2017-05-111-0/+12
* bpo-28963: Fix out of bound iteration in asyncio.Future.remove_done_callback/...Yury Selivanov2017-03-031-1/+1
* bpo-29271: Fix Task.current_task and Task.all_tasks to accept None. (#406)Yury Selivanov2017-03-031-6/+6
* Use _PyObject_CallMethodIdObjArgs() in _asyncioVictor Stinner2016-12-091-17/+19
* Use _PyObject_CallNoArg()Victor Stinner2016-12-061-1/+1
* Use _PyObject_CallNoArg()Victor Stinner2016-12-061-6/+6
* Issue #28858: Remove _PyObject_CallArg1() macroVictor Stinner2016-12-051-3/+3
* Backed out changeset b9c9691c72c5Victor Stinner2016-12-041-5/+7
* Merge 3.6 (issue #28843)Yury Selivanov2016-12-011-0/+5
* Replace PyObject_CallFunctionObjArgs() with fastcallVictor Stinner2016-12-011-7/+5
* correctly emulate error semantics of gen.throw in FutureIter_throwBenjamin Peterson2016-11-141-19/+34
* Issue #26081: Fix refleak in _asyncio.Future.__iter__().throw.Yury Selivanov2016-11-091-1/+3
* Issue #23996: Added _PyGen_SetStopIterationValue for safe raisingSerhiy Storchaka2016-11-061-18/+4
* Issue #28544: Fix inefficient call to _PyObject_CallMethodId()Victor Stinner2016-10-291-1/+1
* Issue #28544: Pass `PyObject*` to _PyDict_Pop, not `PyDictObject*`Yury Selivanov2016-10-281-5/+5
* Issue #28544: Fix _asynciomodule.c on WindowsVictor Stinner2016-10-281-5/+5
* Issue #28544: Implement asyncio.Task in C.Yury Selivanov2016-10-281-277/+1699
* Issue #28430: Fix iterator of C implemented asyncio.Future doesn'tINADA Naoki2016-10-251-6/+4
* Issue #28493: Fix typos in _asynciomodule.cYury Selivanov2016-10-201-2/+2
* Issue #28492: Fix how StopIteration is raised in _asyncio.FutureYury Selivanov2016-10-201-2/+19
* Issue #28452: Remove _asyncio._init_module functionINADA Naoki2016-10-181-66/+55
* Issue #28428: Rename _futures module to _asyncio.INADA Naoki2016-10-151-0/+1034