| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-128552: fix refcycles in eager task creation (#128553) | Thomas Grainger | 2025-01-07 | 2 | -2/+12 |
|
|
* | gh-128559: Remove typing import from asyncio.timeouts (#128560) | Michael H | 2025-01-06 | 1 | -13/+11 |
|
|
* | gh-128340: add thread safe handle for `loop.call_soon_threadsafe` (#128369) | Kumar Aditya | 2025-01-06 | 2 | -1/+32 |
|
|
* | gh-127529: Correct asyncio's `accept_connection` behaviour for handling `Conn... | jb2170 | 2025-01-03 | 1 | -3/+7 |
|
|
* | Mention loop_factory argument in docstring for asyncio.run() (#128288) | Andrew Svetlov | 2024-12-27 | 1 | -0/+1 |
|
|
* | gh-127949: deprecate `asyncio.set_event_loop` (#128218) | Kumar Aditya | 2024-12-24 | 3 | -14/+24 |
|
|
* | gh-127949: deprecate asyncio policy classes (#128216) | Kumar Aditya | 2024-12-24 | 4 | -15/+31 |
|
|
* | gh-127949: deprecate `asyncio.get_event_loop_policy` (#128053) | Kumar Aditya | 2024-12-18 | 1 | -5/+9 |
|
|
* | gh-127949: deprecate `asyncio.set_event_loop_policy` (#128024) | Kumar Aditya | 2024-12-18 | 1 | -2/+8 |
|
|
* | gh-127655: Ensure `_SelectorSocketTransport.writelines` pauses the protocol i... | J. Nick Koston | 2024-12-06 | 1 | -0/+1 |
|
|
* | gh-126353: remove implicit creation of loop from `asyncio.get_event_loop` (#1... | Kumar Aditya | 2024-11-04 | 1 | -24/+0 |
|
|
* | gh-118950: Fix SSLProtocol.connection_lost not being called when OSError is t... | Javad Shafique | 2024-10-24 | 1 | -1/+4 |
|
|
* | gh-124958: Revert "gh-125472: Revert "gh-124958: fix asyncio.TaskGroup and _P... | Thomas Grainger | 2024-10-14 | 2 | -13/+34 |
|
|
* | gh-125472: Revert "gh-124958: fix asyncio.TaskGroup and _PyFuture refcycles (... | Kirill Podoprigora | 2024-10-14 | 2 | -34/+13 |
|
|
* | gh-124958: fix asyncio.TaskGroup and _PyFuture refcycles (#124959) | Thomas Grainger | 2024-10-14 | 2 | -13/+34 |
|
|
* | gh-124309: fix staggered race on eager tasks (#124847) | Thomas Grainger | 2024-10-11 | 1 | -3/+14 |
|
|
* | gh-124858: fix happy eyeballs refcyles (#124859) | Thomas Grainger | 2024-10-02 | 2 | -6/+13 |
|
|
* | gh-124594: Create and reuse the same context for the entire asyncio REPL sess... | Bartosz Sławecki | 2024-10-01 | 1 | -2/+4 |
|
|
* | gh-124309: Revert eager task factory fix to prevent breaking downstream (#124... | Peter Bierma | 2024-10-01 | 2 | -24/+61 |
|
|
* | GH-124639: add back loop param to staggered_race (#124700) | Kumar Aditya | 2024-09-29 | 1 | -2/+8 |
|
|
* | gh-120284: Enhance `asyncio.run` to accept awaitable objects (#120566) | Ron Frederick | 2024-09-26 | 1 | -4/+13 |
|
|
* | gh-124309: Modernize the `staggered_race` implementation to support eager tas... | Peter Bierma | 2024-09-26 | 2 | -62/+19 |
|
|
* | gh-120221: Support KeyboardInterrupt in asyncio REPL (#123795) | Łukasz Langa | 2024-09-06 | 1 | -0/+10 |
|
|
* | gH-80788: remove old weakset workaround for thread safety (#123388) | Kumar Aditya | 2024-08-27 | 1 | -17/+2 |
|
|
* | Fix typo mentioning threads instead of tasks (#123203) | Kevin Evans | 2024-08-23 | 1 | -3/+3 |
|
|
* | gh-122858: Deprecate `asyncio.iscoroutinefunction` (#122875) | Wulian | 2024-08-11 | 3 | -2/+11 |
|
|
* | gh-121913: Use str(exc) instead of exc.strerror in `asyncio.base_events` (#12... | AN Long | 2024-07-25 | 1 | -3/+2 |
|
|
* | gh-121957: Emit audit events for `python -i` and `python -m asyncio` (GH-121958) | Łukasz Langa | 2024-07-22 | 1 | -0/+5 |
|
|
* | gh-121790: Fix interactive console initialization (#121793) | Milan Oberkirch | 2024-07-15 | 1 | -18/+9 |
|
|
* | fix outdated comments in asyncio (#121783) | Kumar Aditya | 2024-07-15 | 2 | -4/+3 |
|
|
* | gh-121711: Set `-m asyncio` return_code to 1 for ENOTTY (#121714) | Milan Oberkirch | 2024-07-13 | 1 | -1/+2 |
|
|
* | gh-119909: Fix ``NameError`` in ``asyncio`` REPL (#121341) | Kirill Podoprigora | 2024-07-06 | 1 | -1/+1 |
|
|
* | gh-87744: fix waitpid race while calling send_signal in asyncio (#121126) | Kumar Aditya | 2024-07-01 | 1 | -9/+26 |
|
|
* | gh-120804: remove `is_active` method from internal child watchers implementat... | Kumar Aditya | 2024-06-28 | 1 | -6/+0 |
|
|
* | GH-120804: Remove `PidfdChildWatcher`, `ThreadedChildWatcher` and `AbstractCh... | Kumar Aditya | 2024-06-23 | 1 | -176/+23 |
|
|
* | GH-120804: Remove `get_child_watcher` and `set_child_watcher` from asyncio (#... | Kumar Aditya | 2024-06-23 | 2 | -113/+5 |
|
|
* | GH-107803: double linked list implementation for asyncio tasks (GH-107804) | Kumar Aditya | 2024-06-22 | 1 | -2/+3 |
|
|
* | GH-120804: Remove SafeChildWatcher, FastChildWatcher and MultiLoopChildWatche... | Kumar Aditya | 2024-06-21 | 1 | -322/+3 |
|
|
* | gh-113892: Add a extra check to `ProactorEventLoop.sock_connect` to ensure th... | Kirill Podoprigora | 2024-06-01 | 1 | -0/+2 |
|
|
* | gh-118894: Make asyncio REPL use pyrepl (GH-119433) | Łukasz Langa | 2024-05-31 | 1 | -18/+71 |
|
|
* | gh-119121: Fix and test `async.staggered.staggered_race` (#119173) | Nikita Sobolev | 2024-05-20 | 1 | -2/+1 |
|
|
* | gh-118817: Fix `asyncio REPL` on Windows (#118819) | Kirill Podoprigora | 2024-05-09 | 1 | -3/+4 |
|
|
* | gh-117722: Fix Stream.readuntil with non-bytes buffer objects (#117723) | Bruce Merry | 2024-04-11 | 1 | -5/+5 |
|
|
* | gh-116720: Fix corner cases of taskgroups (#117407) | Guido van Rossum | 2024-04-09 | 2 | -6/+15 |
|
|
* | gh-81322: support multiple separators in StreamReader.readuntil (#16429) | Bruce Merry | 2024-04-08 | 1 | -21/+44 |
|
|
* | gh-96471: Correct documentation for asyncio queue shutdown (#117621) | Laurie O | 2024-04-08 | 1 | -2/+4 |
|
|
* | gh-96471: Add asyncio queue shutdown (#104228) | Laurie O | 2024-04-06 | 1 | -3/+65 |
|
|
* | gh-117459: Keep the traceback in _convert_future_exc (#117460) | rsp4jack | 2024-04-04 | 1 | -4/+2 |
|
|
* | gh-77714: Provide an async iterator version of as_completed (GH-22491) | Justin Turner Arthur | 2024-04-01 | 1 | -44/+108 |
|
|
* | gh-91227: Ignore ERROR_PORT_UNREACHABLE in proactor recvfrom() (#32011) | Erik Soma | 2024-03-23 | 1 | -12/+17 |
|
|