summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
* gh-91048: Add filename:line_no information to `asyncio pstree` (#133478)Łukasz Langa2025-05-052-3/+12
* gh-133346: Make theming support in _colorize extensible (GH-133347)Łukasz Langa2025-05-051-3/+4
* gh-128307: Support eager_start=<bool> in create_eager_task_factory and vario...Thomas Grainger2025-05-053-16/+7
* GH-91048: Minor fixes for ``_remotedebugging`` & rename to ``_remote_debuggin...Adam Turner2025-05-051-1/+1
* gh-91048: Add filename and line number to external inspection routines (GH-13...Pablo Galindo Salgado2025-05-041-0/+2
* GH-91048: Add utils for printing the call stack for asyncio tasks (#133284)Pablo Galindo Salgado2025-05-042-0/+244
* gh-86513: improve docs of loop.call_exception_handler (#132466)Kumar Aditya2025-04-131-0/+2
* gh-130322: drop deprecation of `asyncio.set_event_loop` (#132349)Kumar Aditya2025-04-123-9/+4
* gh-132307: Remove unnecessary check in `asyncio/base_events.py` (#132324)Stan Ulbrych2025-04-101-2/+1
* gh-131325: fix sendfile fallback implementation to drain data after writing t...Kumar Aditya2025-03-171-1/+1
* gh-128002: use efficient linked list implementation for eager tasks in asynci...Kumar Aditya2025-03-031-1/+0
* gh-129874: avoid mixing pure python and C impl in eager execution (#130515)Kumar Aditya2025-02-241-1/+1
* gh-128231: Use `runcode()` return value for failing early (GH-129488)Bartosz Sławecki2025-02-241-1/+1
* gh-129898: per-thread current task implementation in asyncio (#129899)Kumar Aditya2025-02-191-1/+1
* gh-130145: fix `loop.run_forever` when loop is already running (#130146)Kumar Aditya2025-02-151-1/+1
* gh-129874: avoid mixing pure python and C implementation of asyncio (#129875)Kumar Aditya2025-02-091-7/+7
* gh-115514: Fix incomplete writes after close while using ssl in asyncio(#128037)Vojtěch Boček2025-02-021-5/+7
* gh-129403: Fix `ValueError` messages in `asyncio.Barrier` and `threading.Barr...Stan Ulbrych2025-01-301-1/+1
* gh-129195: use `future_add_to_awaited_by/future_discard_from_awaited_by` in `...Thomas Grainger2025-01-261-1/+6
* gh-128479: fix asyncio staggered race leaking tasks, and logging unhandled ex...Thomas Grainger2025-01-231-24/+48
* GH-91048: Add utils for capturing async call stack for asyncio programs and e...Yury Selivanov2025-01-225-4/+368
* gh-128588: gh-128550: remove eager tasks optimization that missed and introdu...Thomas Grainger2025-01-201-7/+5
* gh-128308: pass `**kwargs` to asyncio task_factory (#128768)Thomas Grainger2025-01-202-17/+11
* gh-128916: Do not set `SO_REUSEPORT` on non-`AF_INET*` sockets (GH-128933)Michał Górny2025-01-181-1/+3
* Fix typo in `Lib/asyncio/futures.py` (#128819)Wang Ran (汪然)2025-01-151-1/+1
* gh-128552: fix refcycles in eager task creation (#128553)Thomas Grainger2025-01-072-2/+12
* gh-128559: Remove typing import from asyncio.timeouts (#128560)Michael H2025-01-061-13/+11
* gh-128340: add thread safe handle for `loop.call_soon_threadsafe` (#128369)Kumar Aditya2025-01-062-1/+32
* gh-127529: Correct asyncio's `accept_connection` behaviour for handling `Conn...jb21702025-01-031-3/+7
* Mention loop_factory argument in docstring for asyncio.run() (#128288)Andrew Svetlov2024-12-271-0/+1
* gh-127949: deprecate `asyncio.set_event_loop` (#128218)Kumar Aditya2024-12-243-14/+24
* gh-127949: deprecate asyncio policy classes (#128216)Kumar Aditya2024-12-244-15/+31
* gh-127949: deprecate `asyncio.get_event_loop_policy` (#128053)Kumar Aditya2024-12-181-5/+9
* gh-127949: deprecate `asyncio.set_event_loop_policy` (#128024)Kumar Aditya2024-12-181-2/+8
* gh-127655: Ensure `_SelectorSocketTransport.writelines` pauses the protocol i...J. Nick Koston2024-12-061-0/+1
* gh-126353: remove implicit creation of loop from `asyncio.get_event_loop` (#1...Kumar Aditya2024-11-041-24/+0
* gh-118950: Fix SSLProtocol.connection_lost not being called when OSError is t...Javad Shafique2024-10-241-1/+4
* gh-124958: Revert "gh-125472: Revert "gh-124958: fix asyncio.TaskGroup and _P...Thomas Grainger2024-10-142-13/+34
* gh-125472: Revert "gh-124958: fix asyncio.TaskGroup and _PyFuture refcycles (...Kirill Podoprigora2024-10-142-34/+13
* gh-124958: fix asyncio.TaskGroup and _PyFuture refcycles (#124959)Thomas Grainger2024-10-142-13/+34
* gh-124309: fix staggered race on eager tasks (#124847)Thomas Grainger2024-10-111-3/+14
* gh-124858: fix happy eyeballs refcyles (#124859)Thomas Grainger2024-10-022-6/+13
* gh-124594: Create and reuse the same context for the entire asyncio REPL sess...Bartosz Sławecki2024-10-011-2/+4
* gh-124309: Revert eager task factory fix to prevent breaking downstream (#124...Peter Bierma2024-10-012-24/+61
* GH-124639: add back loop param to staggered_race (#124700)Kumar Aditya2024-09-291-2/+8
* gh-120284: Enhance `asyncio.run` to accept awaitable objects (#120566)Ron Frederick2024-09-261-4/+13
* gh-124309: Modernize the `staggered_race` implementation to support eager tas...Peter Bierma2024-09-262-62/+19
* gh-120221: Support KeyboardInterrupt in asyncio REPL (#123795)Łukasz Langa2024-09-061-0/+10
* gH-80788: remove old weakset workaround for thread safety (#123388)Kumar Aditya2024-08-271-17/+2
* Fix typo mentioning threads instead of tasks (#123203)Kevin Evans2024-08-231-3/+3