index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
_asynciomodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
bpo-39947: Add PyThreadState_GetID() function (GH-19163)
Victor Stinner
2020-03-25
1
-2/+3
*
bpo-39947: Add _PyThreadState_GetDict() function (GH-19160)
Victor Stinner
2020-03-25
1
-2/+3
*
bpo-40024: Update C extension modules to use PyModule_AddType() (GH-19119)
Dong-hee Na
2020-03-24
1
-12/+3
*
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester
2020-03-04
1
-1/+1
*
bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)
Dong-hee Na
2020-02-17
1
-3/+3
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
1
-11/+11
*
bpo-39573: Use Py_SET_SIZE() function (GH-18402)
Victor Stinner
2020-02-07
1
-1/+1
*
Make repr of C accelerated TaskWakeupMethWrapper the same as of pure Python v...
Andrew Svetlov
2019-12-07
1
-1/+17
*
bpo-38978: Implement __class_getitem__ for asyncio objects (GH-17491)
Batuhan Taşkaya
2019-12-07
1
-0/+15
*
bpo-38823: Clean up refleaks in _asyncio initialization. (GH-17195)
Brandt Bucher
2019-11-16
1
-0/+4
*
bpo-38785: Prevent asyncio from crashing (GH-17144)
Andrew Svetlov
2019-11-13
1
-0/+1
*
bpo-36356: Fix memory leak in _asynciomodule.c (GH-16598)
Ben Harper
2019-10-07
1
-0/+7
*
bpo-38321: Fix _asynciomodule.c compiler warning (GH-16493)
Victor Stinner
2019-09-30
1
-1/+0
*
bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330)
Yury Selivanov
2019-09-25
1
-7/+8
*
bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904)
Serhiy Storchaka
2019-08-04
1
-3/+3
*
bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)
Jeroen Demeyer
2019-07-11
1
-8/+6
*
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer
2019-07-08
1
-9/+7
*
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer
2019-07-04
1
-12/+9
*
bpo-37194: Add a new public PyObject_CallNoArgs() function (GH-13890)
Victor Stinner
2019-06-17
1
-6/+6
*
bpo-36999: Add asyncio.Task.get_coro() (GH-13680)
Alex Grönholm
2019-05-30
1
-0/+13
*
bpo-32388: Remove cross-version binary compatibility requirement in tp_flags ...
Antoine Pitrou
2019-05-29
1
-4/+2
*
bpo-36974: implement PEP 590 (GH-13185)
Jeroen Demeyer
2019-05-29
1
-4/+2
*
bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528)
Yury Selivanov
2019-05-27
1
-7/+4
*
asyncio: PendingDeprecationWarning -> DeprecationWarning (GH-12494)
Inada Naoki
2019-03-22
1
-2/+2
*
bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11...
Zackery Spytz
2018-12-17
1
-0/+12
*
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka
2018-11-27
1
-16/+16
*
Fix a compiler warning added in bpo-34872. (GH-9722)
Serhiy Storchaka
2018-10-05
1
-1/+1
*
bpo-34872: Fix self-cancellation in C implementation of asyncio.Task (GH-9679)
Elvis Pranskevichus
2018-10-03
1
-3/+8
*
bpo-34762: Update PyContext* to PyObject* in asyncio and decimal (GH-9609)
Yury Selivanov
2018-09-27
1
-9/+8
*
bpo-34755: Add few minor optimizations in _asynciomodule.c. (GH-9455)
Serhiy Storchaka
2018-09-21
1
-158/+116
*
bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)
Andrew Svetlov
2018-09-11
1
-0/+2
*
Fixed inconsistency in string handling in the Task C implementation (GH-8717)
Alex Grönholm
2018-08-09
1
-5/+9
*
bpo-34270: Make it possible to name asyncio tasks (GH-8547)
Alex Grönholm
2018-08-08
1
-2/+58
*
Make TaskStepMethWrapper_Type and TaskWakeupMethWrapper_Type static. (GH-8127)
Benjamin Peterson
2018-07-06
1
-2/+2
*
bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174)
Yury Selivanov
2018-05-28
1
-2/+2
*
bpo-33623: Fix possible SIGSGV when asyncio.Future is created in __del__ (#7080)
Yury Selivanov
2018-05-28
1
-1/+7
*
bpo-33584: Fix several minor bugs in asyncio. (GH-7003)
Serhiy Storchaka
2018-05-20
1
-15/+21
*
bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995)
Oren Milman
2018-02-13
1
-9/+19
*
bpo-32746: Fix multiple typos (GH-5144)
Leo Arias
2018-02-04
1
-1/+1
*
bpo-32643: Drop support for a few private Task and Future APIs. (#5293)
Yury Selivanov
2018-01-24
1
-106/+9
*
bpo-32296: Make get_running_loop() another 4-5x faster (#5277)
Yury Selivanov
2018-01-23
1
-62/+102
*
bpo-32436: Implement PEP 567 (#5027)
Yury Selivanov
2018-01-23
1
-55/+154
*
Fix typo (#5049)
Andrew Svetlov
2017-12-30
1
-1/+1
*
bpo-31721: Allow Future._log_traceback to only be set to False (#5009)
Yury Selivanov
2017-12-25
1
-0/+5
*
bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923)
Yury Selivanov
2017-12-25
1
-9/+42
*
bpo-32415: Fix "error is already set" (#4999)
Yury Selivanov
2017-12-23
1
-0/+1
*
bpo-32357: Use PySet_GET_SIZE macro in _is_coroutine() from _asynciomodule.c ...
Andrew Svetlov
2017-12-23
1
-1/+1
*
bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992)
Yury Selivanov
2017-12-23
1
-29/+69
*
Fix GCC warning in _asynciomodule.c (#4928)
Zackery Spytz
2017-12-19
1
-1/+1
*
bpo-32357: Optimize asyncio.iscoroutine() for non-native coroutines (#4915)
Yury Selivanov
2017-12-19
1
-28/+85
[prev]
[next]