summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* GH-99388: add `loop_factory` parameter to `asyncio.run` (#99462)Kumar Aditya2022-11-141-0/+10
* gh-99357: Close the event loop when it is no longer used in test_uncancel_str...Xiao Chen2022-11-121-21/+24
* GH-94597: add deprecation warnings for subclassing `AbstractChildWatcher` (#9...Kumar Aditya2022-11-121-1/+8
* gh-98793: Fix typecheck in `overlapped.c` (#98835)Charlie Zhao2022-10-301-0/+11
* GH-90352: fix _SelectorDatagramTransport to inherit from DatagramTransport (#...Kumar Aditya2022-10-291-0/+4
* gh-98703: Add tests for closing `_ProactorSocketTransport` with proactor even...Kumar Aditya2022-10-271-0/+21
* GH-89237: fix hang in proactor `subprocess.wait_closed()` (#98572)Kumar Aditya2022-10-241-1/+6
* GH-98407: fix `test_kill_issue43884` to not leak child processes (#98491)Kumar Aditya2022-10-241-1/+4
* gh-98174: Handle EPROTOTYPE under macOS in test_sendfile_fallback_close_peer_...fancidev2022-10-171-2/+12
* GH-98327: Reduce scope of catch_warnings() in _make_subprocess_transport (#98...Kumar Aditya2022-10-171-9/+5
* GH-94597: Deprecate child watcher getters and setters (#98215)Kumar Aditya2022-10-155-28/+52
* bpo-46364: Use sockets for stdin of asyncio only on AIX (#30596)Christoph Hamsen2022-10-131-0/+20
* GH-94597: deprecate `SafeChildWatcher`, `FastChildWatcher` and `MultiLoopChil...Kumar Aditya2022-10-084-38/+47
* GH-98023: Change default child watcher to PidfdChildWatcher on supported syst...Kumar Aditya2022-10-081-1/+13
* GH-94182: Run the PidfdChildWatcher on the running loop (#94184)Thomas Grainger2022-10-081-10/+44
* GH-88968: Reject socket that is already used as a transport (#98010)Guido van Rossum2022-10-071-0/+4
* gh-97983: Revert "Lay the foundation for further work in asyncio.test_streams...Oleg Iarygin2022-10-071-129/+197
* GH-90985: Revert "Deprecate passing a message into cancel()" (#97999)Guido van Rossum2022-10-072-57/+9
* gh-88050: Fix asyncio subprocess to kill process cleanly when process is bloc...Kumar Aditya2022-10-051-0/+25
* gh-93357: Port test cases to IsolatedAsyncioTestCase, part 2 (#97896)Oleg Iarygin2022-10-051-29/+15
* GH-96704: Add {Task,Handle}.get_context(), use it in call_exception_handler()...Guido van Rossum2022-10-052-0/+52
* gh-93357: Start porting asyncio server test cases to IsolatedAsyncioTestCase ...Oleg Iarygin2022-10-041-173/+119
* gh-90908: Document asyncio.Task.cancelling() and asyncio.Task.uncancel() (#95...Łukasz Langa2022-10-011-4/+124
* GH-97592: Fix crash in C remove_done_callback due to evil code (#97660)Guido van Rossum2022-09-301-0/+15
* gh-96348: Deprecate the 3-arg signature of coroutine.throw and generator.thro...Ofey Chan2022-09-301-4/+9
* gh-97545: Make Semaphore run faster. (#97549)Cyker Way2022-09-261-2/+1
* gh-90155: Fix bug in asyncio.Semaphore and strengthen FIFO guarantee (#93222)Cyker Way2022-09-221-0/+100
* Revert "gh-87079: Warn on unintended signal wakeup fd override in `asyncio` (...Guido van Rossum2022-09-172-36/+3
* gh-87079: Warn on unintended signal wakeup fd override in `asyncio` (#96807)Michel Hidalgo2022-09-172-3/+36
* gh-93973: Add all_errors to asyncio.create_connection (#93974)Pamela Fox2022-09-051-0/+36
* GH-74116: Allow multiple drain waiters for asyncio.StreamWriter (GH-94705)Kumar Aditya2022-08-291-0/+19
* GH-95704: Don't suppress errors from tasks when TG is cancelled (#95761)Guido van Rossum2022-08-171-24/+30
* GH-95899: fix asyncio.Runner to call set_event_loop only once (#95900)Kumar Aditya2022-08-151-0/+14
* gh-95724: Clarify taskgroups.py license. (#95847)Yury Selivanov2022-08-111-1/+2
* gh-95573: Reduce test data size in test_asyncio/test_ssl.py (GH-95668)Fantix King2022-08-051-7/+12
* gh-95573: Fix a mistake in asyncio ssl tests suppressing all logs (#95687)Fantix King2022-08-051-1/+11
* GH-95289: Always call uncancel() when parent cancellation is requested (#95602)Kumar Aditya2022-08-041-1/+32
* gh-91323: Revert "Allow overriding a future compliance check in asyncio.Task ...Łukasz Langa2022-08-041-9/+1
* gh-95597: Fix typo in Lib directory files (#95599)Jo, Yunjin2022-08-031-1/+1
* GH-95097: fix `asyncio.run` for tasks without `uncancel` method (#95211)Kumar Aditya2022-07-281-2/+49
* gh-95051: ensure that timeouts scheduled with `asyncio.Timeout` that have alr...Thomas Grainger2022-07-241-0/+24
* gh-95010: Fix asyncio GenericWatcherTests.test_create_subprocess_fails_with_i...Thomas Grainger2022-07-211-20/+26
* gh-72889: Remove redundant mock.Mock()._is_coroutine = False workarounds (#94...Thomas Grainger2022-07-173-13/+0
* bpo-45924: Fix asyncio incorrect traceback when future's exception is raised ...Kumar Aditya2022-07-111-1/+30
* GH-93896: AAlways set event loop in asyncio.run and IsolatedAsyncioTestCase (...Kumar Aditya2022-07-061-0/+12
* GH-94398: TaskGroup: Fail create_task() during shutdown (GH-94400)Guido van Rossum2022-06-301-4/+23
* gh-84753: Make inspect.iscoroutinefunction() work with AsyncMock (#94050)Mehdi ABAAKOUK2022-06-301-0/+1
* gh-84623: Remove unused imports (#94132)Victor Stinner2022-06-221-1/+0
* gh-93852: Add test.support.create_unix_domain_name() (#93914)Victor Stinner2022-06-172-23/+23
* test_asyncio: run_until() implements exponential sleep (#93866)Victor Stinner2022-06-151-1/+3