| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | gh-104144: Optimize gather to finish eagerly when all futures complete eagerl... | Itamar Ostricher | 2023-05-06 | 1 | -1/+12 |
|
|
* | gh-104144: Skip scheduling a done callback if a TaskGroup task completes eage... | Itamar Ostricher | 2023-05-05 | 1 | -2/+8 |
|
|
* | gh-97696: asyncio eager tasks factory (#102853) | Itamar Ostricher | 2023-05-01 | 2 | -26/+106 |
|
|
* | gh-83925: Make asyncio.subprocess communicate similar to non-asyncio (#18650) | Marek Marczykowski-Górecki | 2023-04-28 | 1 | -5/+6 |
|
|
* | gh-103607: Fix `pause_reading` to work when called from `connection_made` in ... | Itayazolay | 2023-04-27 | 2 | -24/+32 |
|
|
* | gh-103462: Ensure SelectorSocketTransport.writelines registers a writer when ... | Ali-Akber Saifee | 2023-04-13 | 1 | -0/+3 |
|
|
* | gh-102780: Fix uncancel() call in asyncio timeouts (#102815) | Kristján Valur Jónsson | 2023-03-22 | 1 | -3/+4 |
|
|
* | gh-102810: Add docstrings to the public-facing methods of `asyncio.Timeout` (... | JosephSBoyle | 2023-03-19 | 1 | -0/+12 |
|
|
* | GH-102748: remove legacy support for generator based coroutines from `asyncio... | Kumar Aditya | 2023-03-16 | 1 | -2/+1 |
|
|
* | GH-100112: avoid using iterable coroutines in asyncio internally (#100128) | Kumar Aditya | 2023-03-16 | 1 | -16/+6 |
|
|
* | gh-102560 Add docstrings to asyncio.TaskGroup (#102565) | JosephSBoyle | 2023-03-15 | 1 | -0/+18 |
|
|
* | Remove redundant `_ensure_future` in favor of `ensure_future` in `asyncio` (#... | Kumar Aditya | 2023-03-07 | 1 | -6/+2 |
|
|
* | gh-100226: Clarify StreamReader.read behavior (#101807) | Jan Gosmann | 2023-02-17 | 1 | -8/+9 |
|
|
* | GH-96764: rewrite `asyncio.wait_for` to use `asyncio.timeout` (#98518) | Kumar Aditya | 2023-02-16 | 1 | -48/+29 |
|
|
* | gh-101317: Add `ssl_shutdown_timeout` parameter for `asyncio.StreamWriter.sta... | beavailable | 2023-02-01 | 1 | -2/+4 |
|
|
* | gh-101143: Remove references to `TimerHandle` from `asyncio.base_events.BaseE... | J. Nick Koston | 2023-01-21 | 1 | -6/+3 |
|
|
* | GH-100573: Fix server hang caused by os.stat() on named pipe (Windows) (#100959) | Guido van Rossum | 2023-01-13 | 1 | -0/+5 |
|
|
* | gh-100160: Restore and deprecate implicit creation of an event loop (GH-100410) | Serhiy Storchaka | 2023-01-13 | 1 | -1/+23 |
|
|
* | GH-86508: skip binding to local addresses of different family in `asyncio.ope... | Kumar Aditya | 2023-01-04 | 1 | -2/+8 |
|
|
* | GH-91166: Implement zero copy writes for `SelectorSocketTransport` in asyncio... | Kumar Aditya | 2022-12-24 | 1 | -11/+75 |
|
|
* | gh-100344: Add C implementation for `asyncio.current_task` (#100345) | Itamar Ostricher | 2022-12-22 | 1 | -1/+4 |
|
|
* | GH-100133: fix `asyncio` subprocess losing `stderr` and `stdout` output (#100... | Kumar Aditya | 2022-12-21 | 1 | -3/+0 |
|
|
* | GH-100363: Speed up `asyncio.get_running_loop` (#100364) | Kumar Aditya | 2022-12-21 | 1 | -0/+1 |
|
|
* | gh-100348: Fix ref cycle in `asyncio._SelectorSocketTransport` with `_read_re... | Richard Kojedzinszky | 2022-12-20 | 1 | -0/+4 |
|
|
* | gh-99941: Ensure that asyncio.Protocol.data_received receives immutable bytes... | DarioDaF | 2022-12-10 | 2 | -3/+4 |
|
|
* | gh-93453: No longer create an event loop in get_event_loop() (#98440) | Serhiy Storchaka | 2022-12-06 | 4 | -23/+9 |
|
|
* | GH-66285: fix forking in asyncio (#99769) | Kumar Aditya | 2022-11-27 | 1 | -0/+11 |
|
|
* | GH-66285: Revert "fix forking in asyncio" (#99756) | Kumar Aditya | 2022-11-24 | 1 | -9/+0 |
|
|
* | GH-79033: Fix asyncio.Server.wait_closed() (#98582) | Guido van Rossum | 2022-11-24 | 1 | -1/+1 |
|
|
* | GH-66285: fix forking in `asyncio` (#99539) | Kumar Aditya | 2022-11-24 | 1 | -0/+9 |
|
|
* | gh-88863: Clear ref cycles to resolve leak when asyncio.open_connection raise... | Dong Uk, Kang | 2022-11-22 | 3 | -14/+35 |
|
|
* | GH-99388: add `loop_factory` parameter to `asyncio.run` (#99462) | Kumar Aditya | 2022-11-14 | 1 | -2/+2 |
|
|
* | GH-94597: add deprecation warnings for subclassing `AbstractChildWatcher` (#9... | Kumar Aditya | 2022-11-12 | 1 | -0/+7 |
|
|
* | gh-99277: remove older version of `get_write_buffer_limits` (#99280) | Carlo | 2022-11-10 | 1 | -6/+0 |
|
|
* | GH-90352: fix _SelectorDatagramTransport to inherit from DatagramTransport (#... | Kumar Aditya | 2022-10-29 | 1 | -1/+1 |
|
|
* | gh-98703: Fix asyncio proactor_events calling _call_connection_lost multiple ... | Ken Jin | 2022-10-27 | 1 | -0/+2 |
|
|
* | GH-89237: fix hang in proactor `subprocess.wait_closed()` (#98572) | Kumar Aditya | 2022-10-24 | 1 | -1/+3 |
|
|
* | GH-98539: fix ref cycle in `_SSLProtocolTransport` after close (#98540) | Kumar Aditya | 2022-10-22 | 1 | -2/+5 |
|
|
* | GH-98543: Fix `asyncio.TaskGroup` to not keep reference to errors after rais... | Kumar Aditya | 2022-10-22 | 1 | -5/+5 |
|
|
* | GH-98327: Reduce scope of catch_warnings() in _make_subprocess_transport (#98... | Kumar Aditya | 2022-10-17 | 1 | -24/+25 |
|
|
* | GH-94597: Deprecate child watcher getters and setters (#98215) | Kumar Aditya | 2022-10-15 | 1 | -24/+32 |
|
|
* | Bpo-41246: IOCP Proactor avoid callback code duplication (#21399) | Tony Solomonik | 2022-10-13 | 1 | -65/+17 |
|
|
* | bpo-46364: Use sockets for stdin of asyncio only on AIX (#30596) | Christoph Hamsen | 2022-10-13 | 1 | -4/+3 |
|
|
* | GH-94597: deprecate `SafeChildWatcher`, `FastChildWatcher` and `MultiLoopChil... | Kumar Aditya | 2022-10-08 | 1 | -0/+15 |
|
|
* | GH-98023: Change default child watcher to PidfdChildWatcher on supported syst... | Kumar Aditya | 2022-10-08 | 1 | -1/+15 |
|
|
* | GH-94182: Run the PidfdChildWatcher on the running loop (#94184) | Thomas Grainger | 2022-10-08 | 1 | -32/+12 |
|
|
* | GH-88968: Reject socket that is already used as a transport (#98010) | Guido van Rossum | 2022-10-07 | 1 | -0/+3 |
|
|
* | GH-90985: Revert "Deprecate passing a message into cancel()" (#97999) | Guido van Rossum | 2022-10-07 | 2 | -11/+0 |
|
|
* | GH-88050: fix race in closing subprocess pipe in asyncio (#97951) | Kumar Aditya | 2022-10-06 | 1 | -1/+3 |
|
|
* | gh-88050: Fix asyncio subprocess to kill process cleanly when process is bloc... | Kumar Aditya | 2022-10-05 | 1 | -6/+7 |
|
|