COMMITS
/ Modules/_asynciomodule.c August 4, 2019
S
bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904)
Serhiy Storchaka committed
July 11, 2019
J
bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)
Jeroen Demeyer committed
July 8, 2019
J
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer committed
July 4, 2019
J
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer committed
June 17, 2019
V
bpo-37194: Add a new public PyObject_CallNoArgs() function (GH-13890)
Victor Stinner committed
May 30, 2019
A
bpo-36999: Add asyncio.Task.get_coro() (GH-13680)
Alex Grönholm committed
May 29, 2019
A
bpo-32388: Remove cross-version binary compatibility requirement in tp_flags (GH-4944)
Antoine Pitrou committed
J
bpo-36974: implement PEP 590 (GH-13185)
Jeroen Demeyer committed
May 27, 2019
Y
bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528)
Yury Selivanov committed
March 22, 2019
I
asyncio: PendingDeprecationWarning -> DeprecationWarning (GH-12494)
Inada Naoki committed
December 17, 2018
Z
bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11175)
Zackery Spytz committed
November 27, 2018
S
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka committed
October 5, 2018
S
Fix a compiler warning added in bpo-34872. (GH-9722)
Serhiy Storchaka committed
October 3, 2018
E
bpo-34872: Fix self-cancellation in C implementation of asyncio.Task (GH-9679)
Elvis Pranskevichus committed
September 27, 2018
Y
bpo-34762: Update PyContext* to PyObject* in asyncio and decimal (GH-9609)
Yury Selivanov committed
September 21, 2018
S
bpo-34755: Add few minor optimizations in _asynciomodule.c. (GH-9455)
Serhiy Storchaka committed
September 11, 2018
A
bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)
Andrew Svetlov committed
August 9, 2018
A
Fixed inconsistency in string handling in the Task C implementation (GH-8717)
Alex Grönholm committed
August 8, 2018
A
bpo-34270: Make it possible to name asyncio tasks (GH-8547)
Alex Grönholm committed
July 6, 2018
B
Make TaskStepMethWrapper_Type and TaskWakeupMethWrapper_Type static. (GH-8127)
Benjamin Peterson committed
May 28, 2018
Y
bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174)
Yury Selivanov committed
Y
bpo-33623: Fix possible SIGSGV when asyncio.Future is created in __del__ (#7080)
Yury Selivanov committed
May 20, 2018
S
bpo-33584: Fix several minor bugs in asyncio. (GH-7003)
Serhiy Storchaka committed
February 13, 2018
O
bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995)
Oren Milman committed
February 4, 2018
L
bpo-32746: Fix multiple typos (GH-5144)
Leo Arias committed
January 24, 2018
Y
bpo-32643: Drop support for a few private Task and Future APIs. (#5293)
Yury Selivanov committed
January 23, 2018
Y
bpo-32296: Make get_running_loop() another 4-5x faster (#5277)
Yury Selivanov committed
Y
bpo-32436: Implement PEP 567 (#5027)
Yury Selivanov committed
December 30, 2017
A
Fix typo (#5049)
Andrew Svetlov committed
December 25, 2017
Y
bpo-31721: Allow Future._log_traceback to only be set to False (#5009)
Yury Selivanov committed
Y
bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923)
Yury Selivanov committed
December 23, 2017
Y
bpo-32415: Fix "error is already set" (#4999)
Yury Selivanov committed
A
bpo-32357: Use PySet_GET_SIZE macro in _is_coroutine() from _asynciomodule.c (#4990)
Andrew Svetlov committed
Y
bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992)
Yury Selivanov committed
December 19, 2017
Z
Fix GCC warning in _asynciomodule.c (#4928)
Zackery Spytz committed
Y
bpo-32357: Optimize asyncio.iscoroutine() for non-native coroutines (#4915)
Yury Selivanov committed
December 18, 2017
Y
bpo-32348: Optimize asyncio.Future schedule/add/remove callback. (#4907)
Yury Selivanov committed
December 16, 2017
A
bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799)
Andrew Svetlov committed
December 15, 2017
A
bpo-32311: Implement asyncio.create_task() shortcut (#4848)
Andrew Svetlov committed
December 13, 2017
Y
bpo-32296: Implement asyncio.get_event_loop and _get_running_loop in C. (#4827)
Yury Selivanov committed
September 3, 2017
S
bpo-31185: Fixed miscellaneous errors in asyncio speedup module. (#3076)
Serhiy Storchaka committed
August 2, 2017
A
bpo-31061: fix crash in asyncio speedup module (GH-2966)
Alexander Mohr committed
July 5, 2017
Y
bpo-30828: Fix out of bounds write in `asyncio.CFuture.remove_done_callback() (#2569)
Yury Selivanov committed
June 11, 2017
Y
bpo-30508: Don't log exceptions if Task/Future "cancel()" method called (#2050)
Yury Selivanov committed
May 11, 2017
I
bpo-30048: asyncio: fix Task.cancel() was ignored. (GH-1097)
INADA Naoki committed
March 3, 2017
Y
bpo-28963: Fix out of bound iteration in asyncio.Future.remove_done_callback/C (#408)
Yury Selivanov committed
Y
bpo-29271: Fix Task.current_task and Task.all_tasks to accept None. (#406)
Yury Selivanov committed
December 9, 2016
V
Use _PyObject_CallMethodIdObjArgs() in _asyncio
Victor Stinner committed
December 6, 2016
V
Use _PyObject_CallNoArg()
Victor Stinner committed
V
Use _PyObject_CallNoArg()
Victor Stinner committed