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-103182: use vectorcall in `_asyncio` instead of variadic calling APIs (#10...
Kumar Aditya
2023-04-03
1
-22/+17
*
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...
Irit Katriel
2023-02-24
1
-47/+22
*
gh-101476: Use _PyType_GetModuleState where applicable (#102188)
Erlend E. Aasland
2023-02-24
1
-1/+1
*
gh-101326: Fix regression when passing None to FutureIter.throw (#101327)
Shantanu
2023-01-25
1
-1/+6
*
gh-100344: Add C implementation for `asyncio.current_task` (#100345)
Itamar Ostricher
2022-12-22
1
-0/+39
*
GH-100363: Speed up `asyncio.get_running_loop` (#100364)
Kumar Aditya
2022-12-21
1
-118/+12
*
gh-93453: No longer create an event loop in get_event_loop() (#98440)
Serhiy Storchaka
2022-12-06
1
-24/+3
*
GH-91375: Port `_asyncio` static types to heap types and module state (#99122)
Kumar Aditya
2022-11-29
1
-405/+638
*
gh-99300: Replace Py_INCREF() with Py_NewRef() (#99513)
Victor Stinner
2022-11-16
1
-4/+2
*
gh-99300: Use Py_NewRef() in Modules/_asynciomodule.c (#99441)
Victor Stinner
2022-11-13
1
-54/+26
*
gh-90868: Adjust the Generated Objects (gh-99223)
Eric Snow
2022-11-08
1
-4/+5
*
GH-90699: Remove `_Py_IDENTIFIER` usage from `_asyncio` module (#99010)
Kumar Aditya
2022-11-02
1
-69/+38
*
GH-90985: Revert "Deprecate passing a message into cancel()" (#97999)
Guido van Rossum
2022-10-07
1
-20/+0
*
GH-96704: Add {Task,Handle}.get_context(), use it in call_exception_handler()...
Guido van Rossum
2022-10-05
1
-0/+13
*
GH-97592: Fix crash in C remove_done_callback due to evil code (#97660)
Guido van Rossum
2022-09-30
1
-2/+7
*
gh-96348: Deprecate the 3-arg signature of coroutine.throw and generator.thro...
Ofey Chan
2022-09-30
1
-0/+8
*
gh-95808: Add missing early returns in _asynciomodule.c (#95809)
Yury Selivanov
2022-08-15
1
-2/+3
*
gh-91323: Revert "Allow overriding a future compliance check in asyncio.Task ...
Łukasz Langa
2022-08-04
1
-64/+7
*
bpo-45924: Fix asyncio incorrect traceback when future's exception is raised ...
Kumar Aditya
2022-07-11
1
-0/+14
*
GH-90230: Add stats to breakdown the origin of calls to `PyEval_EvalFrame` (G...
Mark Shannon
2022-05-27
1
-1/+2
*
GH-93207: Remove HAVE_STDARG_PROTOTYPES configure check for stdarg.h (#93215)
Kumar Aditya
2022-05-27
1
-4/+0
*
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
[next]