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
*
gh-91320: Use _PyCFunction_CAST() (#92251)
Victor Stinner
2022-05-03
1
-1/+1
*
bpo-47167: Allow overriding a future compliance check in asyncio.Task (GH-32197)
Andrew Svetlov
2022-04-01
1
-7/+64
*
asyncio.Task: rename internal nested variable to don't hide another declarati...
Andrew Svetlov
2022-03-29
1
-13/+13
*
bpo-46829: Deprecate passing a message into Future.cancel() and Task.cancel()...
Andrew Svetlov
2022-03-23
1
-0/+20
*
bpo-47057: Use FASTCALL convention for FutureIter.throw() (GH-31973)
Andrew Svetlov
2022-03-19
1
-8/+13
*
bpo-47039: Normalize repr() of asyncio future and task objects (GH-31950)
Andrew Svetlov
2022-03-17
1
-56/+21
*
bpo-46994: Accept explicit contextvars.Context in asyncio create_task() API (...
Andrew Svetlov
2022-03-14
1
-5/+11
*
bpo-46771: Remove two controversial lines from Task.cancel() (GH-31623)
Guido van Rossum
2022-02-28
1
-3/+7
*
bpo-46771: Implement task cancel requests counter (GH-31513)
Tin Tvrtković
2022-02-24
1
-27/+18
*
bpo-45390: Propagate CancelledError's message from cancelled task to its awai...
Andrew Svetlov
2022-02-21
1
-23/+19
*
bpo-46752: Add TaskGroup; add Task..cancelled(),.uncancel() (GH-31270)
Guido van Rossum
2022-02-15
1
-0/+59
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-0/+1
*
bpo-46469: Make asyncio generic classes return GenericAlias (GH-30777)
Kumar Aditya
2022-01-22
1
-16/+2
*
bpo-46070: Fix asyncio initialisation guard (GH-30423)
Erlend Egeberg Aasland
2022-01-07
1
-6/+4
*
bpo-45711: Remove type and traceback from exc_info (GH-30122)
Irit Katriel
2021-12-17
1
-8/+2
*
bpo-45711: [asyncio] Normalize exceptions immediately after Fetch, before the...
Irit Katriel
2021-12-03
1
-7/+12
*
bpo-45711: Use _PyErr_ClearExcState instead of setting only exc_value to NULL...
Irit Katriel
2021-11-10
1
-4/+9
*
bpo-43974: Move Py_BUILD_CORE_MODULE into module code (GH-29157)
Christian Heimes
2021-10-22
1
-0/+4
*
pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)
Victor Stinner
2021-10-13
1
-2/+3
*
bpo-45262, asyncio: Fix cache of the running loop holder (GH-28796)
Matthias Reichl
2021-10-07
1
-0/+3
*
bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make Py_TPFLAGS_HAVE_VERSION_TA...
Petr Viktorin
2021-07-23
1
-2/+1
*
bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-...
Serhiy Storchaka
2021-04-25
1
-3/+23
*
Fix memory leak introduced by GH-22780 (GH-23237)
Andrew Svetlov
2020-11-11
1
-0/+1
*
bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#2...
Vladimir Matveev
2020-11-10
1
-11/+45
*
Delete TaskWakeupMethWrapper_Type and use PyCFunction instead (#22875)
Vladimir Matveev
2020-10-22
1
-94/+8
*
bpo-41756: Add PyIter_Send function (#22443)
Vladimir Matveev
2020-10-10
1
-8/+1
*
bpo-41756: Introduce PyGen_Send C API (GH-22196)
Vladimir Matveev
2020-09-19
1
-5/+22
*
bpo-41247: asyncio.set_running_loop() cache running loop holder (GH-21401)
Tony Solomonik
2020-07-08
1
-3/+9
*
bpo-40967: Remove deprecated asyncio.Task.current_task() and asyncio.Task.all...
Rémi Lapeyre
2020-07-02
1
-89/+0
*
bpo-40061: Fix a possible refleak in _asynciomodule.c (GH-19748)
Zackery Spytz
2020-05-30
1
-0/+1
*
bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)
Chris Jerdonek
2020-05-22
1
-6/+6
*
bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)
Chris Jerdonek
2020-05-18
1
-21/+63
*
bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979)
Chris Jerdonek
2020-05-15
1
-16/+99
*
bpo-40559: Add Py_DECREF to _asynciomodule.c:task_step_impl() (GH-19990)
Chris Jerdonek
2020-05-08
1
-0/+4
*
bpo-40294: Fix _asyncio when module is loaded/unloaded multiple times (GH-19542)
Jeffrey Quesnelle
2020-04-17
1
-0/+2
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-1/+1
*
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
[next]