summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* gh-120417: Add #noqa: F401 to tests (#120627)Victor Stinner2024-06-181-4/+4
* gh-114091: Reword error message for unawaitable types (#114090)Steele Farnsworth2024-06-172-5/+5
* gh-120226: Fix test_sendfile_close_peer_in_the_middle_of_receiving on Linux >...Xi Ruoyao2024-06-071-7/+4
* gh-113892: Add a extra check to `ProactorEventLoop.sock_connect` to ensure th...Kirill Podoprigora2024-06-011-2/+7
* Remove almost all unpaired backticks in docstrings (#119231)Geoffrey Thomas2024-05-221-2/+2
* gh-119121: Fix and test `async.staggered.staggered_race` (#119173)Nikita Sobolev2024-05-201-0/+97
* gh-119064: Use os_helper.FakePath instead of pathlib.Path in tests (GH-119065)Serhiy Storchaka2024-05-161-6/+5
* gh-117722: Fix Stream.readuntil with non-bytes buffer objects (#117723)Bruce Merry2024-04-111-7/+14
* gh-116720: Fix corner cases of taskgroups (#117407)Guido van Rossum2024-04-092-0/+90
* gh-81322: support multiple separators in StreamReader.readuntil (#16429)Bruce Merry2024-04-081-0/+46
* gh-96471: Add asyncio queue shutdown (#104228)Laurie O2024-04-061-0/+199
* gh-117459: Keep the traceback in _convert_future_exc (#117460)rsp4jack2024-04-041-0/+19
* gh-77714: Provide an async iterator version of as_completed (GH-22491)Justin Turner Arthur2024-04-011-63/+219
* gh-71042: Add `platform.android_ver` (#116674)Malcolm Smith2024-03-271-0/+5
* gh-91227: Ignore ERROR_PORT_UNREACHABLE in proactor recvfrom() (#32011)Erik Soma2024-03-232-0/+155
* gh-116333: Relax error string text expectations in SSL-related tests (GH-116334)Will Childs-Klein2024-03-211-4/+8
* gh-116773: Ensure overlapped objects on Windows are not deallocated too early...jkriegshauser2024-03-201-5/+45
* gh-113538: Add asycio.Server.{close,abort}_clients (redo) (#116784)Pierre Ossman (ThinLinc team)2024-03-181-8/+88
* gh-113538: Revert "gh-113538: Add asycio.Server.{close,abort}_clients (#11443...Guido van Rossum2024-03-121-88/+8
* gh-113538: Add asycio.Server.{close,abort}_clients (#114432)Pierre Ossman (ThinLinc team)2024-03-111-8/+88
* gh-71052: Change Android's `sys.platform` from "linux" to "android"Malcolm Smith2024-03-111-1/+2
* gh-115957: Close coroutine if TaskGroup.create_task() raises an error (#116009)Jason Zhang2024-03-061-16/+25
* gh-116112: Fix `ResourceWarning` in `test_asyncio.test_stream` (#116371)Nikita Sobolev2024-03-051-0/+1
* chore: fix typos (#116345)cui fliter2024-03-051-2/+2
* gh-71052: Add test exclusions to support running the test suite on Android (#...Malcolm Smith2024-02-291-2/+2
* gh-112997: Don't log arguments in asyncio unless debugging (#115667)Pierre Ossman (ThinLinc team)2024-02-281-3/+21
* gh-114914: Avoid keeping dead StreamWriter alive (#115661)Pierre Ossman (ThinLinc team)2024-02-281-0/+25
* gh-111358: Fix timeout behaviour in BaseEventLoop.shutdown_default_executor (...Jamie Phan2024-02-191-0/+16
* gh-113812: Allow DatagramTransport.sendto to send empty data (#115199)Jamie Phan2024-02-172-9/+32
* gh-114099: Add test exclusions to support running the test suite on iOS (#114...Russell Keith-Magee2024-02-054-2/+19
* gh-114887 Reject only sockets of type SOCK_STREAM in create_datagram_endpoint...Travis Howse2024-02-031-1/+1
* gh-112202: Ensure that condition.notify() succeeds even when racing with Task...Kristján Valur Jónsson2024-02-031-0/+92
* gh-114272: Fix or skip tests that fail due to spaces in paths (GH-114451)Steve Dower2024-01-251-2/+5
* gh-109862: Fix test_create_subprocess_with_pidfd when it was run separately (...Serhiy Storchaka2024-01-151-2/+7
* gh-95649: Document that asyncio contains uvloop code (#107536)Alois Klink2024-01-121-0/+4
* gh-96037: Always insert TimeoutError when exit an expired asyncio.timeout() b...Serhiy Storchaka2024-01-101-11/+114
* gh-113879: Fix ResourceWarning in test_asyncio.test_server (GH-113881)Serhiy Storchaka2024-01-101-14/+14
* gh-112182: Replace StopIteration with RuntimeError for future (#113220)Jamie Phan2024-01-101-4/+19
* GH-111693: Propagate correct asyncio.CancelledError instance out of asyncio.C...Kristján Valur Jónsson2024-01-081-0/+113
* gh-113538: Don't error in stream reader protocol callback when task is cancel...Guido van Rossum2024-01-041-7/+13
* gh-112559: Avoid unnecessary conversion attempts to enum_klass in signal.py (...Yilei Yang2023-12-241-0/+18
* GH-113214: Fix SSLProto exception handling in SSL-over-SSL scenarios (#113334)Martijn Pieters2023-12-201-1/+14
* gh-112186: Improve test case `test_loop_is_closed_resource_warnings` (#112187)DPR2023-11-191-6/+3
* gh-109538: Avoid RuntimeError when StreamWriter is deleted with closed loop (...DPR2023-11-151-2/+39
* gh-111246: Remove listening Unix socket on close (#111483)Pierre Ossman (ThinLinc team)2023-11-081-0/+76
* gh-111644: Fix asyncio test_unhandled_exceptions() (#111713)Victor Stinner2023-11-041-2/+3
* GH-110894: Call loop exception handler for exceptions in client_connected_cb ...Kumar Aditya2023-11-021-0/+28
* gh-111347: Remove wrong assertion in test_sendfile (#111377)zcxsythenew2023-10-291-2/+5
* gh-79033: Try to fix asyncio.Server.wait_closed() again (GH-111336)Guido van Rossum2023-10-281-4/+34
* gh-110205: Fix asyncio ThreadedChildWatcher._join_threads() (#110884)Guido van Rossum2023-10-271-3/+8