summaryrefslogtreecommitdiff
path: root/Modules/_asynciomodule.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11...Miss Islington (bot)2018-12-171-0/+12
* bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Miss Islington (bot)2018-11-271-16/+16
* [3.7] Fix a compiler warning added in bpo-34872. (GH-9722). (GH-9726)Serhiy Storchaka2018-10-051-1/+1
* [3.7] bpo-34872: Fix self-cancellation in C implementation of asyncio.Task (G...Elvis Pranskevichus2018-10-031-3/+8
* [3.7] bpo-34762: Update PyContext* refs to PyObject* in asyncio and decimal (...Yury Selivanov2018-09-271-9/+8
* Make TaskStepMethWrapper_Type and TaskWakeupMethWrapper_Type static. (GH-8127)Miss Islington (bot)2018-07-051-2/+2
* bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174)Miss Islington (bot)2018-05-281-2/+2
* bpo-33623: Fix possible SIGSGV when asyncio.Future is created in __del__ (GH-...Miss Islington (bot)2018-05-281-1/+7
* bpo-33584: Fix several minor bugs in asyncio. (GH-7003) (GH-7005)Miss Islington (bot)2018-05-201-15/+21
* bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995)Miss Islington (bot)2018-02-131-9/+19
* [3.7] bpo-32746: Fix multiple typos (GH-5144) (GH-5520)Miss Islington (bot)2018-02-031-1/+1
* bpo-32643: Drop support for a few private Task and Future APIs. (#5293)Yury Selivanov2018-01-241-106/+9
* bpo-32296: Make get_running_loop() another 4-5x faster (#5277)Yury Selivanov2018-01-231-62/+102
* bpo-32436: Implement PEP 567 (#5027)Yury Selivanov2018-01-221-55/+154
* Fix typo (#5049)Andrew Svetlov2017-12-301-1/+1
* bpo-31721: Allow Future._log_traceback to only be set to False (#5009)Yury Selivanov2017-12-251-0/+5
* bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923)Yury Selivanov2017-12-251-9/+42
* bpo-32415: Fix "error is already set" (#4999)Yury Selivanov2017-12-231-0/+1
* bpo-32357: Use PySet_GET_SIZE macro in _is_coroutine() from _asynciomodule.c ...Andrew Svetlov2017-12-231-1/+1
* bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992)Yury Selivanov2017-12-231-29/+69
* Fix GCC warning in _asynciomodule.c (#4928)Zackery Spytz2017-12-191-1/+1
* bpo-32357: Optimize asyncio.iscoroutine() for non-native coroutines (#4915)Yury Selivanov2017-12-191-28/+85
* bpo-32348: Optimize asyncio.Future schedule/add/remove callback. (#4907)Yury Selivanov2017-12-171-75/+322
* bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799)Andrew Svetlov2017-12-161-110/+260
* bpo-32311: Implement asyncio.create_task() shortcut (#4848)Andrew Svetlov2017-12-151-1/+28
* bpo-32296: Implement asyncio.get_event_loop and _get_running_loop in C. (#4827)Yury Selivanov2017-12-131-7/+244
* 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-021-1/+1
* bpo-29271: Fix Task.current_task and Task.all_tasks to accept None. (#406)Yury Selivanov2017-03-021-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-081-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