aboutsummaryrefslogtreecommitdiff
path: root/Modules/_asynciomodule.c
AgeCommit message (Expand)Author
2018-02-13bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995)Oren Milman
2018-02-03bpo-32746: Fix multiple typos (GH-5144)Leo Arias
2018-01-24bpo-32643: Drop support for a few private Task and Future APIs. (#5293)Yury Selivanov
2018-01-23bpo-32296: Make get_running_loop() another 4-5x faster (#5277)Yury Selivanov
2018-01-22bpo-32436: Implement PEP 567 (#5027)Yury Selivanov
2017-12-30Fix typo (#5049)Andrew Svetlov
2017-12-25bpo-31721: Allow Future._log_traceback to only be set to False (#5009)Yury Selivanov
2017-12-25bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923)Yury Selivanov
2017-12-23bpo-32415: Fix "error is already set" (#4999)Yury Selivanov
2017-12-23bpo-32357: Use PySet_GET_SIZE macro in _is_coroutine() from _asynciomodule.c ...Andrew Svetlov
2017-12-23bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992)Yury Selivanov
2017-12-19Fix GCC warning in _asynciomodule.c (#4928)Zackery Spytz
2017-12-19bpo-32357: Optimize asyncio.iscoroutine() for non-native coroutines (#4915)Yury Selivanov
2017-12-17bpo-32348: Optimize asyncio.Future schedule/add/remove callback. (#4907)Yury Selivanov
2017-12-16bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799)Andrew Svetlov
2017-12-15bpo-32311: Implement asyncio.create_task() shortcut (#4848)Andrew Svetlov
2017-12-13bpo-32296: Implement asyncio.get_event_loop and _get_running_loop in C. (#4827)Yury Selivanov
2017-09-03bpo-31185: Fixed miscellaneous errors in asyncio speedup module. (#3076)Serhiy Storchaka
2017-08-02bpo-31061: fix crash in asyncio speedup module (GH-2966)Alexander Mohr
2017-07-05bpo-30828: Fix out of bounds write in `asyncio.CFuture.remove_done_callback()...Yury Selivanov
2017-06-11bpo-30508: Don't log exceptions if Task/Future "cancel()" method called (#2050)Yury Selivanov
2017-05-11bpo-30048: asyncio: fix Task.cancel() was ignored. (GH-1097)INADA Naoki
2017-03-02bpo-28963: Fix out of bound iteration in asyncio.Future.remove_done_callback/...Yury Selivanov
2017-03-02bpo-29271: Fix Task.current_task and Task.all_tasks to accept None. (#406)Yury Selivanov
2016-12-09Use _PyObject_CallMethodIdObjArgs() in _asyncioVictor Stinner
2016-12-06Use _PyObject_CallNoArg()Victor Stinner
2016-12-06Use _PyObject_CallNoArg()Victor Stinner
2016-12-05Issue #28858: Remove _PyObject_CallArg1() macroVictor Stinner
2016-12-04Backed out changeset b9c9691c72c5Victor Stinner
2016-12-01Merge 3.6 (issue #28843)Yury Selivanov
2016-12-01Replace PyObject_CallFunctionObjArgs() with fastcallVictor Stinner
2016-11-14correctly emulate error semantics of gen.throw in FutureIter_throwBenjamin Peterson
2016-11-08Issue #26081: Fix refleak in _asyncio.Future.__iter__().throw.Yury Selivanov
2016-11-06Issue #23996: Added _PyGen_SetStopIterationValue for safe raisingSerhiy Storchaka
2016-10-29Issue #28544: Fix inefficient call to _PyObject_CallMethodId()Victor Stinner
2016-10-28Issue #28544: Pass `PyObject*` to _PyDict_Pop, not `PyDictObject*`Yury Selivanov
2016-10-28Issue #28544: Fix _asynciomodule.c on WindowsVictor Stinner
2016-10-28Issue #28544: Implement asyncio.Task in C.Yury Selivanov
2016-10-25Issue #28430: Fix iterator of C implemented asyncio.Future doesn'tINADA Naoki
2016-10-20Issue #28493: Fix typos in _asynciomodule.cYury Selivanov
2016-10-20Issue #28492: Fix how StopIteration is raised in _asyncio.FutureYury Selivanov
2016-10-18Issue #28452: Remove _asyncio._init_module functionINADA Naoki
2016-10-15Issue #28428: Rename _futures module to _asyncio.INADA Naoki