COMMITS
/ Modules/_asynciomodule.c September 30, 2022
M
GH-97592: Fix crash in C remove_done_callback due to evil code (GH-97660)
Miss Islington (bot) committed
July 11, 2022
M
bpo-45924: Fix asyncio incorrect traceback when future's exception is raised multiple times (GH-30274) (#94748)
Miss Islington (bot) committed
January 22, 2022
M
[3.10] bpo-46469: Make asyncio generic classes return GenericAlias (GH-30777) (#30784)
Miss Islington (bot) committed
January 7, 2022
M
bpo-46070: Fix asyncio initialisation guard (GH-30423)
Miss Islington (bot) committed
October 8, 2021
M
bpo-45262, asyncio: Fix cache of the running loop holder (GH-28796) (GH-28816)
Miss Islington (bot) committed
July 23, 2021
M
bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make Py_TPFLAGS_HAVE_VERSION_TAG no-op (GH-27260) (GH-27306)
Miss Islington (bot) committed
April 25, 2021
S
bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-23554)
Serhiy Storchaka committed
November 11, 2020
A
Fix memory leak introduced by GH-22780 (GH-23237)
Andrew Svetlov committed
November 10, 2020
V
bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#22780)
Vladimir Matveev committed
October 22, 2020
V
Delete TaskWakeupMethWrapper_Type and use PyCFunction instead (#22875)
Vladimir Matveev committed
October 10, 2020
V
bpo-41756: Add PyIter_Send function (#22443)
Vladimir Matveev committed
September 19, 2020
V
bpo-41756: Introduce PyGen_Send C API (GH-22196)
Vladimir Matveev committed
July 8, 2020
T
bpo-41247: asyncio.set_running_loop() cache running loop holder (GH-21401)
Tony Solomonik committed
July 2, 2020
R
May 30, 2020
Z
bpo-40061: Fix a possible refleak in _asynciomodule.c (GH-19748)
Zackery Spytz committed
May 22, 2020
C
bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)
Chris Jerdonek committed
May 18, 2020
C
bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)
Chris Jerdonek committed
May 15, 2020
C
bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979)
Chris Jerdonek committed
May 8, 2020
C
bpo-40559: Add Py_DECREF to _asynciomodule.c:task_step_impl() (GH-19990)
Chris Jerdonek committed
April 17, 2020
J
bpo-40294: Fix _asyncio when module is loaded/unloaded multiple times (GH-19542)
Jeffrey Quesnelle committed
April 15, 2020
V
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner committed
March 25, 2020
V
bpo-39947: Add PyThreadState_GetID() function (GH-19163)
Victor Stinner committed
V
bpo-39947: Add _PyThreadState_GetDict() function (GH-19160)
Victor Stinner committed
March 24, 2020
D
bpo-40024: Update C extension modules to use PyModule_AddType() (GH-19119)
Dong-hee Na committed
March 4, 2020
A
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester committed
February 17, 2020
D
bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)
Dong-hee Na committed
February 11, 2020
P
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin committed
February 7, 2020
V
bpo-39573: Use Py_SET_SIZE() function (GH-18402)
Victor Stinner committed
December 7, 2019
A
Make repr of C accelerated TaskWakeupMethWrapper the same as of pure Python version (GH-17484)
Andrew Svetlov committed
B
bpo-38978: Implement __class_getitem__ for asyncio objects (GH-17491)
Batuhan Taşkaya committed
November 16, 2019
B
bpo-38823: Clean up refleaks in _asyncio initialization. (GH-17195)
Brandt Bucher committed
November 13, 2019
A
bpo-38785: Prevent asyncio from crashing (GH-17144)
Andrew Svetlov committed
October 7, 2019
B
bpo-36356: Fix memory leak in _asynciomodule.c (GH-16598)
Ben Harper committed
September 30, 2019
V
bpo-38321: Fix _asynciomodule.c compiler warning (GH-16493)
Victor Stinner committed
September 25, 2019
Y
bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330)
Yury Selivanov committed
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