summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* gh-110088, gh-109878: Fix test_asyncio timeouts (#110092)Victor Stinner2023-09-296-54/+15
* gh-109833: Fix asyncio test_wait_for() (#109834)Victor Stinner2023-09-251-2/+3
* gh-109653: Remove unused imports in the `Lib/` directory (#109803)Alex Waygood2023-09-241-1/+0
* gh-109505: Remove unnecessary `hasattr` checks from `test_asyncio` (#109506)Nikita Sobolev2023-09-232-7/+3
* gh-109709: Fix asyncio test_stdin_broken_pipe() (#109710)Victor Stinner2023-09-221-10/+42
* gh-109582: test_fork_signal_handling should wait for event (#109605)Davide Rizzo2023-09-211-2/+11
* gh-108973: Fix asyncio test_subprocess_consistent_callbacks() (#109431)Victor Stinner2023-09-201-11/+43
* gh-108303: Move all certificates to `Lib/test/certdata/` (#109489)Nikita Sobolev2023-09-161-8/+8
* gh-109295: Clean up multiprocessing in test_asyncio and test_compileall (#109...Victor Stinner2023-09-121-0/+3
* gh-109015: Add test.support.socket_helper.tcp_blackhole() (#109016)Victor Stinner2023-09-063-0/+10
* gh-107895: Fix test_asyncio.test_runners when run it in CPython's "developmen...Joon Hwan 김준환2023-08-211-1/+4
* GH-106684: raise `ResourceWarning` when `asyncio.StreamWriter` is not closed ...Kumar Aditya2023-08-051-0/+23
* gh-106527: asyncio: optimize to add/remove readers and writers (#106528)J. Nick Koston2023-07-221-18/+18
* gh-105987: Fix reference counting issue in `_asyncio._swap_current_task` (#10...chgnrdv2023-06-241-0/+19
* GH-105684: Require `asyncio.Task` implementations to support `set_name` metho...Kumar Aditya2023-06-131-0/+2
* gh-105331: Change `asyncio.sleep` to raise ``ValueError` for nan (#105641)Jay2023-06-121-0/+15
* gh-105407: Remove unused imports in tests (#105408)Victor Stinner2023-06-061-6/+0
* gh-97696: asyncio eager tasks factory (#102853)Itamar Ostricher2023-05-011-0/+344
* gh-103793: Defer formatting task name (#103767)Itamar Ostricher2023-04-291-0/+12
* gh-83925: Make asyncio.subprocess communicate similar to non-asyncio (#18650)Marek Marczykowski-Górecki2023-04-281-0/+18
* gh-103607: Fix `pause_reading` to work when called from `connection_made` in ...Itayazolay2023-04-272-0/+29
* gh-103780: Use patch instead of mock in asyncio unix events test (#103782)Itamar Ostricher2023-04-241-5/+4
* gh-103462: Ensure SelectorSocketTransport.writelines registers a writer when ...Ali-Akber Saifee2023-04-131-0/+42
* gh-102799: use sys.exception() instead of sys.exc_info() in tests (#103293)Irit Katriel2023-04-062-2/+2
* gh-102780: Fix uncancel() call in asyncio timeouts (#102815)Kristján Valur Jónsson2023-03-221-0/+30
* gh-102799: remove unnecessary calls to sys.exc_info() in tests (#102800)Irit Katriel2023-03-181-2/+2
* GH-78530: add support for generators in `asyncio.wait` (#102761)Kumar Aditya2023-03-171-0/+16
* GH-102748: remove legacy support for generator based coroutines from `asyncio...Kumar Aditya2023-03-161-0/+6
* GH-100112: avoid using iterable coroutines in asyncio internally (#100128)Kumar Aditya2023-03-161-0/+15
* gh-102515: Remove unused imports in the `Lib/` directory (#102516)Alex Waygood2023-03-082-2/+0
* GH-97546: fix flaky asyncio `test_wait_for_race_condition` test (#102421)Kumar Aditya2023-03-051-1/+1
* GH-96764: rewrite `asyncio.wait_for` to use `asyncio.timeout` (#98518)Kumar Aditya2023-02-162-31/+103
* GH-84559: Deprecate fork being the multiprocessing default. (#100618)Gregory P. Smith2023-02-021-1/+8
* gh-101326: Fix regression when passing None to FutureIter.throw (#101327)Shantanu2023-01-251-0/+2
* GH-100573: Fix server hang caused by os.stat() on named pipe (Windows) (#100959)Guido van Rossum2023-01-131-0/+40
* gh-100160: Restore and deprecate implicit creation of an event loop (GH-100410)Serhiy Storchaka2023-01-132-6/+37
* GH-86508: skip binding to local addresses of different family in `asyncio.ope...Kumar Aditya2023-01-041-0/+41
* GH-100192: fix `asyncio` subprocess tests to pass env vars to subprocess (#10...Kumar Aditya2022-12-281-2/+4
* add tests for `asyncio` transport sockets (#100263)Kumar Aditya2022-12-281-0/+23
* GH-100192: add more `asyncio` subprocess tests (#100194)Kumar Aditya2022-12-281-0/+82
* GH-91166: Implement zero copy writes for `SelectorSocketTransport` in asyncio...Kumar Aditya2022-12-241-18/+99
* gh-100344: Add C implementation for `asyncio.current_task` (#100345)Itamar Ostricher2022-12-221-7/+14
* GH-100133: fix `asyncio` subprocess losing `stderr` and `stdout` output (#100...Kumar Aditya2022-12-211-0/+17
* gh-99941: Ensure that asyncio.Protocol.data_received receives immutable bytes...DarioDaF2022-12-101-1/+4
* Fix potential flakiness in `test_run_until_complete_baseexception` (#100148)Fantix King2022-12-101-1/+1
* GH-100113: remove remaining `yield from` usage from `asyncio` tests (#100114)Kumar Aditya2022-12-091-2/+2
* Fix `test_run_until_complete_baseexception` test to check for `KeyboardInterr...Fantix King2022-12-081-8/+3
* gh-93453: No longer create an event loop in get_event_loop() (#98440)Serhiy Storchaka2022-12-066-130/+62
* gh-60203: Always pass True/False as boolean arguments in tests (GH-99983)Serhiy Storchaka2022-12-041-1/+1
* GH-66285: remove redundant `time.sleep` from `test_fork_signal_handling` (GH-...Kumar Aditya2022-12-031-1/+0