aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/asyncio
Commit message (Expand)AuthorAge
* gh-86513: improve docs of loop.call_exception_handler (#132466)Kumar Aditya2025-04-13
* gh-130322: drop deprecation of `asyncio.set_event_loop` (#132349)Kumar Aditya2025-04-12
* gh-132307: Remove unnecessary check in `asyncio/base_events.py` (#132324)Stan Ulbrych2025-04-10
* gh-131325: fix sendfile fallback implementation to drain data after writing t...Kumar Aditya2025-03-18
* gh-128002: use efficient linked list implementation for eager tasks in asynci...Kumar Aditya2025-03-03
* gh-129874: avoid mixing pure python and C impl in eager execution (#130515)Kumar Aditya2025-02-24
* gh-128231: Use `runcode()` return value for failing early (GH-129488)Bartosz Sławecki2025-02-24
* gh-129898: per-thread current task implementation in asyncio (#129899)Kumar Aditya2025-02-19
* gh-130145: fix `loop.run_forever` when loop is already running (#130146)Kumar Aditya2025-02-15
* gh-129874: avoid mixing pure python and C implementation of asyncio (#129875)Kumar Aditya2025-02-09
* gh-115514: Fix incomplete writes after close while using ssl in asyncio(#128037)Vojtěch Boček2025-02-02
* gh-129403: Fix `ValueError` messages in `asyncio.Barrier` and `threading.Barr...Stan Ulbrych2025-01-30
* gh-129195: use `future_add_to_awaited_by/future_discard_from_awaited_by` in `...Thomas Grainger2025-01-26
* gh-128479: fix asyncio staggered race leaking tasks, and logging unhandled ex...Thomas Grainger2025-01-23
* GH-91048: Add utils for capturing async call stack for asyncio programs and e...Yury Selivanov2025-01-22
* gh-128588: gh-128550: remove eager tasks optimization that missed and introdu...Thomas Grainger2025-01-20
* gh-128308: pass `**kwargs` to asyncio task_factory (#128768)Thomas Grainger2025-01-20
* gh-128916: Do not set `SO_REUSEPORT` on non-`AF_INET*` sockets (GH-128933)Michał Górny2025-01-17
* Fix typo in `Lib/asyncio/futures.py` (#128819)Wang Ran (汪然)2025-01-15
* gh-128552: fix refcycles in eager task creation (#128553)Thomas Grainger2025-01-07
* gh-128559: Remove typing import from asyncio.timeouts (#128560)Michael H2025-01-06
* gh-128340: add thread safe handle for `loop.call_soon_threadsafe` (#128369)Kumar Aditya2025-01-06
* gh-127529: Correct asyncio's `accept_connection` behaviour for handling `Conn...jb21702025-01-03
* Mention loop_factory argument in docstring for asyncio.run() (#128288)Andrew Svetlov2024-12-27
* gh-127949: deprecate `asyncio.set_event_loop` (#128218)Kumar Aditya2024-12-24
* gh-127949: deprecate asyncio policy classes (#128216)Kumar Aditya2024-12-24
* gh-127949: deprecate `asyncio.get_event_loop_policy` (#128053)Kumar Aditya2024-12-18
* gh-127949: deprecate `asyncio.set_event_loop_policy` (#128024)Kumar Aditya2024-12-18
* gh-127655: Ensure `_SelectorSocketTransport.writelines` pauses the protocol i...J. Nick Koston2024-12-06
* gh-126353: remove implicit creation of loop from `asyncio.get_event_loop` (#1...Kumar Aditya2024-11-04
* gh-118950: Fix SSLProtocol.connection_lost not being called when OSError is t...Javad Shafique2024-10-24
* gh-124958: Revert "gh-125472: Revert "gh-124958: fix asyncio.TaskGroup and _P...Thomas Grainger2024-10-14
* gh-125472: Revert "gh-124958: fix asyncio.TaskGroup and _PyFuture refcycles (...Kirill Podoprigora2024-10-14
* gh-124958: fix asyncio.TaskGroup and _PyFuture refcycles (#124959)Thomas Grainger2024-10-14
* gh-124309: fix staggered race on eager tasks (#124847)Thomas Grainger2024-10-11
* gh-124858: fix happy eyeballs refcyles (#124859)Thomas Grainger2024-10-02
* gh-124594: Create and reuse the same context for the entire asyncio REPL sess...Bartosz Sławecki2024-10-01
* gh-124309: Revert eager task factory fix to prevent breaking downstream (#124...Peter Bierma2024-09-30
* GH-124639: add back loop param to staggered_race (#124700)Kumar Aditya2024-09-29
* gh-120284: Enhance `asyncio.run` to accept awaitable objects (#120566)Ron Frederick2024-09-26
* gh-124309: Modernize the `staggered_race` implementation to support eager tas...Peter Bierma2024-09-26
* gh-120221: Support KeyboardInterrupt in asyncio REPL (#123795)Łukasz Langa2024-09-06
* gH-80788: remove old weakset workaround for thread safety (#123388)Kumar Aditya2024-08-27
* Fix typo mentioning threads instead of tasks (#123203)Kevin Evans2024-08-23
* gh-122858: Deprecate `asyncio.iscoroutinefunction` (#122875)Wulian2024-08-11
* gh-121913: Use str(exc) instead of exc.strerror in `asyncio.base_events` (#12...AN Long2024-07-25
* gh-121957: Emit audit events for `python -i` and `python -m asyncio` (GH-121958)Łukasz Langa2024-07-22
* gh-121790: Fix interactive console initialization (#121793)Milan Oberkirch2024-07-16
* fix outdated comments in asyncio (#121783)Kumar Aditya2024-07-15
* gh-121711: Set `-m asyncio` return_code to 1 for ENOTTY (#121714)Milan Oberkirch2024-07-13