summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* GH-93850: Fix test_asyncio exception ignored tracebacks (#93854)Kumar Aditya2022-06-151-0/+3
* Use support.sleeping_retry() and support.busy_retry() (#93848)Victor Stinner2022-06-151-6/+5
* gh-84623: Remove unused imports in tests (#93772)Victor Stinner2022-06-135-8/+1
* gh-93247: Fix assert function in asyncio locks test (#93248)Cyker Way2022-06-061-1/+1
* gh-93124: Fix typos in comments (GH-93125)Akuli2022-05-252-4/+4
* gh-90978: asyncio TestSSL uses SHORT_TIMEOUT (#92642)Victor Stinner2022-05-111-10/+13
* gh-90978: test_ssl of test_asyncio uses LONG_TIMEOUT (#92402)Victor Stinner2022-05-061-3/+3
* gh-82616: Add process_group support to subprocess.Popen (#23930)Gregory P. Smith2022-05-051-0/+3
* gh-91880: add try/except around `signal.signal` (#91881)David Hewitt2022-04-251-0/+19
* Simplify testing the warning filename (GH-91868)Serhiy Storchaka2022-04-244-25/+25
* gh-79156: Add start_tls() method to streams API (#91453)Oleg Iarygin2022-04-151-0/+63
* bpo-47167: Allow overriding a future compliance check in asyncio.Task (GH-32197)Andrew Svetlov2022-04-011-1/+9
* bpo-39622: Interrupt the main asyncio task on Ctrl+C (GH-32105)Andrew Svetlov2022-03-301-1/+58
* bpo-47062: Rename factory argument to loop_factory (GH-32113)Andrew Svetlov2022-03-251-1/+1
* bpo-43352: Add a Barrier object in asyncio lib (GH-24903)Duprat2022-03-251-2/+576
* bpo-47118: Fix asyncio.Runner tests error (32117)Andrew Svetlov2022-03-251-1/+1
* bpo-47062: Implement asyncio.Runner context manager (GH-31799)Andrew Svetlov2022-03-241-0/+133
* bpo-47104: Rewrite asyncio.to_thread tests to use IsolatedAsyncioTestCase (GH...Andrew Svetlov2022-03-231-47/+18
* bpo-46829: Deprecate passing a message into Future.cancel() and Task.cancel()...Andrew Svetlov2022-03-233-15/+59
* bpo-45997: Fix asyncio.Semaphore re-acquiring order (GH-31910)Andrew Svetlov2022-03-221-0/+25
* bpo-47076: Make asyncio.Queue stable on slow test boxes (GH-32040)Andrew Svetlov2022-03-221-21/+11
* bpo-40280: Skip socket, fork, subprocess tests on Emscripten (GH-31986)Christian Heimes2022-03-221-0/+2
* bpo-34790: Remove passing coroutine objects to asyncio.wait() (GH-31964)Andrew Svetlov2022-03-171-48/+7
* bpo-47038: Increase a test timeout for slow CI machines (GH-31951)Andrew Svetlov2022-03-171-1/+1
* bpo-47038: Rewrite missed asyncio.wait_for test to use IsolatedAnsyncioTestCa...Andrew Svetlov2022-03-162-26/+24
* bpo-47038: Rewrite asyncio.wait_for test to use IsolatedAsyncioTestCase (GH-3...Andrew Svetlov2022-03-163-313/+270