summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* gh-93247: Fix assert function in asyncio locks test (GH-93248)Miss Islington (bot)2022-06-061-1/+1
* bpo-47104: Rewrite asyncio.to_thread tests to use IsolatedAsyncioTestCase (GH...Miss Islington (bot)2022-03-231-47/+18
* [3.10] bpo-45997: Fix asyncio.Semaphore re-acquiring order (GH-31910) (#32047)Miss Islington (bot)2022-03-221-0/+26
* bpo-47038: Increase a test timeout for slow CI machines (GH-31951)Miss Islington (bot)2022-03-171-1/+1
* bpo-47038: Rewrite missed asyncio.wait_for test to use IsolatedAnsyncioTestCa...Miss Islington (bot)2022-03-172-26/+24
* bpo-47038: Rewrite asyncio.wait_for test to use IsolatedAsyncioTestCase (GH-3...Miss Islington (bot)2022-03-163-313/+270
* bpo-43253: Don't call shutdown() for invalid socket handles (GH-31892)Miss Islington (bot)2022-03-151-0/+8
* [3.10] bpo-46198: rename duplicate tests and remove unused code (GH-30297) (G...Jelle Zijlstra2022-03-101-1/+0
* Inherit asyncio proactor datagram transport from asyncio.DatagramTransport (G...Miss Islington (bot)2022-02-231-0/+1
* bpo-46827: pass sock.type to getaddrinfo in sock_connect (GH-31499)Miss Islington (bot)2022-02-221-0/+18
* bpo-46672: fix `NameError` in `asyncio.gather` if type check fails (GH-31187)...Miss Islington (bot)2022-02-201-0/+14
* [3.10] Fix warning: asyncio.events._event_loop_policy was modified by test_as...Andrew Svetlov2022-02-106-4/+28
* bpo-26552: Fixed case where failing `asyncio.ensure_future` did not close the...Kumar Aditya2022-01-291-1/+12
* bpo-41682: fixed flaky test test_sendfile_close_peer_in_the_middle_of_receivi...Miss Islington (bot)2022-01-251-5/+7
* bpo-41682: Skip unstable test_asyncio sendfile test on Windows (GH-30801) (GH...Miss Islington (bot)2022-01-231-0/+2
* bpo-46425: fix direct invocation of `asyncio` tests (GH-30725) (#30782)Miss Islington (bot)2022-01-226-2/+25
* [3.10] bpo-46469: Make asyncio generic classes return GenericAlias (GH-30777)...Miss Islington (bot)2022-01-223-3/+19
* bpo-23819: Get rid of assert statements in test_asyncio (GH-30212) (GH-30213)Miss Islington (bot)2021-12-2010-63/+102
* [3.10] bpo-46129: Rewrite asyncio.locks tests with IsolatedAsyncioTestCase (G...Andrew Svetlov2021-12-191-252/+214
* bpo-37658: Actually return result in race condition (GH-29202)Miss Islington (bot)2021-11-291-30/+8
* bpo-45416: Fix use of asyncio.Condition() with explicit Lock objects (GH-28850)Miss Islington (bot)2021-10-101-11/+55
* [3.10] Fix typos in the Lib directory (GH-28775) (GH-28804)Christian Clauss2021-10-073-4/+4
* [3.10] bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-2800...Serhiy Storchaka2021-09-081-0/+1
* bpo-45011: Fix test_asyncio without C module _asyncio (GH-27968)Miss Islington (bot)2021-08-264-7/+10
* bpo-44968: Fix test_subprocess_wait_no_same_group in test_asyncio (GH-27870)Miss Islington (bot)2021-08-211-1/+2
* bpo-44287: asyncio test_popen() uses longer timeout (GH-26832)Miss Islington (bot)2021-06-221-1/+2
* bpo-38323: Skip SubprocessMultiLoopWatcherTest as they can hang the test suit...Miss Islington (bot)2021-06-051-0/+2
* bpo-44011: Revert "New asyncio ssl implementation (GH-17975)" (GH-25848)Pablo Galindo2021-05-034-1757/+60
* Increase test timeout (GH-25842)Andrew Svetlov2021-05-031-3/+3
* bpo-44011: Fix asyncio tests without ssl module (GH-25840)Christian Heimes2021-05-031-2/+7
* bpo-44011: New asyncio ssl implementation (#17975)Andrew Svetlov2021-05-024-60/+1752
* bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-...Serhiy Storchaka2021-04-255-152/+405
* bpo-43880: Show DeprecationWarnings for deprecated ssl module features (GH-25...Christian Heimes2021-04-191-2/+2
* bpo-43522: Fix SSLContext.hostname_checks_common_name (GH-24899)Christian Heimes2021-04-171-1/+1
* bpo-43723: Fix deprecation error caused by thread.setDaemon() (GH-25361)Christian Heimes2021-04-121-1/+1
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25145)Inada Naoki2021-04-042-2/+2
* bpo-41891: ensure asyncio.wait_for waits for task completion (#22461)Richard Kojedzinszky2020-12-181-0/+61
* bpo-31904: Skip some asyncio tests on VxWorks (#23815)pxinwr2020-12-172-1/+10
* bpo-40364: asyncio uses os.waitstatus_to_exitcode() (GH-23798)Victor Stinner2020-12-161-196/+65
* bpo-42553: Fix test_asyncio.test_call_later() (GH-23627)Victor Stinner2020-12-031-3/+0
* bpo-34215: Clarify IncompleteReadError message when "expected" is None (GH-21...Zackery Spytz2020-11-281-3/+5
* bpo-42392: Remove loop parameter from asyncio.tasks and asyncio.subprocess (G...Yurii Karabas2020-11-283-84/+39
* bpo-42392: Remove loop parameter from asyncio.streams (GH-23517)Yurii Karabas2020-11-264-81/+45
* bpo-42392: Improve removal of *loop* parameter in asyncio primitives (GH-23499)Yurii Karabas2020-11-252-21/+17
* bpo-42392: Remove loop parameter form asyncio locks and Queue (#23420)Yurii Karabas2020-11-245-384/+257
* bpo-42413: socket.timeout is now an alias of TimeoutError (GH-23413)Christian Heimes2020-11-201-1/+1
* bpo-42140: Improve asyncio.wait function (GH-22938)Diogo Dutra2020-11-101-0/+24
* bpo-42183: Fix a stack overflow error for asyncio Task or Future repr() (GH-2...Andrew Svetlov2020-11-101-0/+18
* bpo-38912: fix close before connect callback in test_asyncio SSL tests (GH-22...Justin Turner Arthur2020-10-201-0/+2
* bpo-41687: Fix sendfile implementation to work with Solaris (#22040)Jakub KulĂ­k2020-09-051-0/+6