| Commit message (Expand) | Author | Age | Files | Lines |
* | [3.12] gh-107895: Fix test_asyncio.test_runners when run it in CPython's "dev... | Miss Islington (bot) | 2023-08-21 | 1 | -1/+4 |
|
|
* | [3.12] gh-105987: Fix reference counting issue in `_asyncio._swap_cur… (#10... | Kumar Aditya | 2023-06-26 | 1 | -1/+18 |
|
|
* | gh-97696: asyncio eager tasks factory (#102853) | Itamar Ostricher | 2023-05-01 | 1 | -0/+344 |
|
|
* | gh-103793: Defer formatting task name (#103767) | Itamar Ostricher | 2023-04-29 | 1 | -0/+12 |
|
|
* | gh-83925: Make asyncio.subprocess communicate similar to non-asyncio (#18650) | Marek Marczykowski-Górecki | 2023-04-28 | 1 | -0/+18 |
|
|
* | gh-103607: Fix `pause_reading` to work when called from `connection_made` in ... | Itayazolay | 2023-04-27 | 2 | -0/+29 |
|
|
* | gh-103780: Use patch instead of mock in asyncio unix events test (#103782) | Itamar Ostricher | 2023-04-24 | 1 | -5/+4 |
|
|
* | gh-103462: Ensure SelectorSocketTransport.writelines registers a writer when ... | Ali-Akber Saifee | 2023-04-13 | 1 | -0/+42 |
|
|
* | gh-102799: use sys.exception() instead of sys.exc_info() in tests (#103293) | Irit Katriel | 2023-04-06 | 2 | -2/+2 |
|
|
* | gh-102780: Fix uncancel() call in asyncio timeouts (#102815) | Kristján Valur Jónsson | 2023-03-22 | 1 | -0/+30 |
|
|
* | gh-102799: remove unnecessary calls to sys.exc_info() in tests (#102800) | Irit Katriel | 2023-03-18 | 1 | -2/+2 |
|
|
* | GH-78530: add support for generators in `asyncio.wait` (#102761) | Kumar Aditya | 2023-03-17 | 1 | -0/+16 |
|
|
* | GH-102748: remove legacy support for generator based coroutines from `asyncio... | Kumar Aditya | 2023-03-16 | 1 | -0/+6 |
|
|
* | GH-100112: avoid using iterable coroutines in asyncio internally (#100128) | Kumar Aditya | 2023-03-16 | 1 | -0/+15 |
|
|
* | gh-102515: Remove unused imports in the `Lib/` directory (#102516) | Alex Waygood | 2023-03-08 | 2 | -2/+0 |
|
|
* | GH-97546: fix flaky asyncio `test_wait_for_race_condition` test (#102421) | Kumar Aditya | 2023-03-05 | 1 | -1/+1 |
|
|
* | GH-96764: rewrite `asyncio.wait_for` to use `asyncio.timeout` (#98518) | Kumar Aditya | 2023-02-16 | 2 | -31/+103 |
|
|
* | GH-84559: Deprecate fork being the multiprocessing default. (#100618) | Gregory P. Smith | 2023-02-02 | 1 | -1/+8 |
|
|
* | gh-101326: Fix regression when passing None to FutureIter.throw (#101327) | Shantanu | 2023-01-25 | 1 | -0/+2 |
|
|
* | GH-100573: Fix server hang caused by os.stat() on named pipe (Windows) (#100959) | Guido van Rossum | 2023-01-13 | 1 | -0/+40 |
|
|
* | gh-100160: Restore and deprecate implicit creation of an event loop (GH-100410) | Serhiy Storchaka | 2023-01-13 | 2 | -6/+37 |
|
|
* | GH-86508: skip binding to local addresses of different family in `asyncio.ope... | Kumar Aditya | 2023-01-04 | 1 | -0/+41 |
|
|
* | GH-100192: fix `asyncio` subprocess tests to pass env vars to subprocess (#10... | Kumar Aditya | 2022-12-28 | 1 | -2/+4 |
|
|
* | add tests for `asyncio` transport sockets (#100263) | Kumar Aditya | 2022-12-28 | 1 | -0/+23 |
|
|
* | GH-100192: add more `asyncio` subprocess tests (#100194) | Kumar Aditya | 2022-12-28 | 1 | -0/+82 |
|
|
* | GH-91166: Implement zero copy writes for `SelectorSocketTransport` in asyncio... | Kumar Aditya | 2022-12-24 | 1 | -18/+99 |
|
|
* | gh-100344: Add C implementation for `asyncio.current_task` (#100345) | Itamar Ostricher | 2022-12-22 | 1 | -7/+14 |
|
|
* | GH-100133: fix `asyncio` subprocess losing `stderr` and `stdout` output (#100... | Kumar Aditya | 2022-12-21 | 1 | -0/+17 |
|
|
* | gh-99941: Ensure that asyncio.Protocol.data_received receives immutable bytes... | DarioDaF | 2022-12-10 | 1 | -1/+4 |
|
|
* | Fix potential flakiness in `test_run_until_complete_baseexception` (#100148) | Fantix King | 2022-12-10 | 1 | -1/+1 |
|
|
* | GH-100113: remove remaining `yield from` usage from `asyncio` tests (#100114) | Kumar Aditya | 2022-12-09 | 1 | -2/+2 |
|
|
* | Fix `test_run_until_complete_baseexception` test to check for `KeyboardInterr... | Fantix King | 2022-12-08 | 1 | -8/+3 |
|
|
* | gh-93453: No longer create an event loop in get_event_loop() (#98440) | Serhiy Storchaka | 2022-12-06 | 6 | -130/+62 |
|
|
* | gh-60203: Always pass True/False as boolean arguments in tests (GH-99983) | Serhiy Storchaka | 2022-12-04 | 1 | -1/+1 |
|
|
* | GH-66285: remove redundant `time.sleep` from `test_fork_signal_handling` (GH-... | Kumar Aditya | 2022-12-03 | 1 | -1/+0 |
|
|
* | GH-66285: fix forking in asyncio (#99769) | Kumar Aditya | 2022-11-27 | 1 | -0/+98 |
|
|
* | GH-66285: Revert "fix forking in asyncio" (#99756) | Kumar Aditya | 2022-11-24 | 1 | -99/+0 |
|
|
* | GH-66285: skip asyncio fork tests for platforms without md5 hash (#99745) | Kumar Aditya | 2022-11-24 | 1 | -0/+4 |
|
|
* | GH-79033: Fix asyncio.Server.wait_closed() (#98582) | Guido van Rossum | 2022-11-24 | 2 | -1/+28 |
|
|
* | GH-66285: fix forking in `asyncio` (#99539) | Kumar Aditya | 2022-11-24 | 1 | -0/+95 |
|
|
* | GH-98219: reduce sleep time in `asyncio` subprocess test (#99464) | Kumar Aditya | 2022-11-14 | 1 | -1/+1 |
|
|
* | GH-99388: add `loop_factory` parameter to `asyncio.run` (#99462) | Kumar Aditya | 2022-11-14 | 1 | -0/+10 |
|
|
* | gh-99357: Close the event loop when it is no longer used in test_uncancel_str... | Xiao Chen | 2022-11-12 | 1 | -21/+24 |
|
|
* | GH-94597: add deprecation warnings for subclassing `AbstractChildWatcher` (#9... | Kumar Aditya | 2022-11-12 | 1 | -1/+8 |
|
|
* | gh-98793: Fix typecheck in `overlapped.c` (#98835) | Charlie Zhao | 2022-10-30 | 1 | -0/+11 |
|
|
* | GH-90352: fix _SelectorDatagramTransport to inherit from DatagramTransport (#... | Kumar Aditya | 2022-10-29 | 1 | -0/+4 |
|
|
* | gh-98703: Add tests for closing `_ProactorSocketTransport` with proactor even... | Kumar Aditya | 2022-10-27 | 1 | -0/+21 |
|
|
* | GH-89237: fix hang in proactor `subprocess.wait_closed()` (#98572) | Kumar Aditya | 2022-10-24 | 1 | -1/+6 |
|
|
* | GH-98407: fix `test_kill_issue43884` to not leak child processes (#98491) | Kumar Aditya | 2022-10-24 | 1 | -1/+4 |
|
|
* | gh-98174: Handle EPROTOTYPE under macOS in test_sendfile_fallback_close_peer_... | fancidev | 2022-10-17 | 1 | -2/+12 |
|
|