summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
* 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
* gh-122858: Deprecate `asyncio.iscoroutinefunction` (#122875)Wulian2024-08-113-2/+11
* gh-121913: Use str(exc) instead of exc.strerror in `asyncio.base_events` (#12...AN Long2024-07-251-3/+2
* gh-121957: Emit audit events for `python -i` and `python -m asyncio` (GH-121958)Łukasz Langa2024-07-221-0/+5
* gh-121790: Fix interactive console initialization (#121793)Milan Oberkirch2024-07-151-18/+9
* fix outdated comments in asyncio (#121783)Kumar Aditya2024-07-152-4/+3
* gh-121711: Set `-m asyncio` return_code to 1 for ENOTTY (#121714)Milan Oberkirch2024-07-131-1/+2
* gh-119909: Fix ``NameError`` in ``asyncio`` REPL (#121341)Kirill Podoprigora2024-07-061-1/+1
* gh-87744: fix waitpid race while calling send_signal in asyncio (#121126)Kumar Aditya2024-07-011-9/+26
* gh-120804: remove `is_active` method from internal child watchers implementat...Kumar Aditya2024-06-281-6/+0
* GH-120804: Remove `PidfdChildWatcher`, `ThreadedChildWatcher` and `AbstractCh...Kumar Aditya2024-06-231-176/+23
* GH-120804: Remove `get_child_watcher` and `set_child_watcher` from asyncio (#...Kumar Aditya2024-06-232-113/+5
* GH-107803: double linked list implementation for asyncio tasks (GH-107804)Kumar Aditya2024-06-221-2/+3
* GH-120804: Remove SafeChildWatcher, FastChildWatcher and MultiLoopChildWatche...Kumar Aditya2024-06-211-322/+3
* gh-113892: Add a extra check to `ProactorEventLoop.sock_connect` to ensure th...Kirill Podoprigora2024-06-011-0/+2
* gh-118894: Make asyncio REPL use pyrepl (GH-119433)Łukasz Langa2024-05-311-18/+71
* gh-119121: Fix and test `async.staggered.staggered_race` (#119173)Nikita Sobolev2024-05-201-2/+1
* gh-118817: Fix `asyncio REPL` on Windows (#118819)Kirill Podoprigora2024-05-091-3/+4
* gh-117722: Fix Stream.readuntil with non-bytes buffer objects (#117723)Bruce Merry2024-04-111-5/+5
* gh-116720: Fix corner cases of taskgroups (#117407)Guido van Rossum2024-04-092-6/+15
* gh-81322: support multiple separators in StreamReader.readuntil (#16429)Bruce Merry2024-04-081-21/+44
* gh-96471: Correct documentation for asyncio queue shutdown (#117621)Laurie O2024-04-081-2/+4
* gh-96471: Add asyncio queue shutdown (#104228)Laurie O2024-04-061-3/+65
* gh-117459: Keep the traceback in _convert_future_exc (#117460)rsp4jack2024-04-041-4/+2
* gh-77714: Provide an async iterator version of as_completed (GH-22491)Justin Turner Arthur2024-04-011-44/+108
* gh-91227: Ignore ERROR_PORT_UNREACHABLE in proactor recvfrom() (#32011)Erik Soma2024-03-231-12/+17