summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* [3.10] GH-100573: Fix server hang caused by os.stat() on named pipe (Windows)...Miss Islington (bot)2023-01-131-0/+40
* [3.10] gh-100160: Remove any deprecation warnings in asyncio.get_event_loop()...Serhiy Storchaka2023-01-131-9/+3
* GH-86508: skip binding to local addresses of different family in `asyncio.ope...Miss Islington (bot)2023-01-041-0/+41
* [3.10] gh-93453: Only emit deprecation warning in asyncio.get_event_loop when...Ɓukasz Langa2022-12-066-116/+66
* [3.10] gh-98793: Fix typecheck in `overlapped.c` (GH-98835) (#98890)Charlie Zhao2022-10-311-0/+11
* gh-98703: Add tests for closing `_ProactorSocketTransport` with proactor even...Miss Islington (bot)2022-10-271-0/+21
* GH-89237: fix hang in proactor `subprocess.wait_closed()` (GH-98572)Miss Islington (bot)2022-10-241-1/+6
* gh-98174: Handle EPROTOTYPE under macOS in test_sendfile_fallback_close_peer_...Miss Islington (bot)2022-10-171-2/+12
* bpo-46364: Use sockets for stdin of asyncio only on AIX (GH-30596)Miss Islington (bot)2022-10-131-0/+20
* GH-97592: Fix crash in C remove_done_callback due to evil code (GH-97660)Miss Islington (bot)2022-09-301-0/+15
* gh-97545: Make Semaphore run faster. (GH-97549)Miss Islington (bot)2022-09-261-2/+1
* gh-90155: Fix bug in asyncio.Semaphore and strengthen FIFO guarantee (GH-93222)Miss Islington (bot)2022-09-221-0/+100
* GH-74116: Allow multiple drain waiters for asyncio.StreamWriter (GH-94705)Miss Islington (bot)2022-09-081-0/+19
* gh-95597: Fix typo in Lib directory files (GH-95599)Miss Islington (bot)2022-08-031-1/+1
* bpo-45924: Fix asyncio incorrect traceback when future's exception is raised ...Miss Islington (bot)2022-07-111-1/+30
* gh-84753: Make inspect.iscoroutinefunction() work with AsyncMock (GH-94050) (...Miss Islington (bot)2022-06-301-0/+1
* 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