summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* gh-122858: Deprecate `asyncio.iscoroutinefunction` (#122875)Wulian2024-08-112-2/+5
* gh-122332: Fix missing `NULL` check in `asyncio.Task.get_coro` (#122338)Peter Bierma2024-07-271-0/+12
* gh-122187: Avoid TSan reported race in `run_udp_echo_server` (#122189)Sam Gross2024-07-251-2/+7
* gh-117657: Skip tests that use threads after fork (#122194)Sam Gross2024-07-231-0/+3
* gh-87744: fix waitpid race while calling send_signal in asyncio (#121126)Kumar Aditya2024-07-011-0/+15
* gh-121025: Improve partialmethod.__repr__ (GH-121033)Bénédikt Tran2024-06-261-1/+1
* GH-120804: Remove `PidfdChildWatcher`, `ThreadedChildWatcher` and `AbstractCh...Kumar Aditya2024-06-234-83/+16
* GH-120804: Remove `get_child_watcher` and `set_child_watcher` from asyncio (#...Kumar Aditya2024-06-234-114/+13
* GH-107803: double linked list implementation for asyncio tasks (GH-107804)Kumar Aditya2024-06-221-11/+23
* GH-120804: Remove SafeChildWatcher, FastChildWatcher and MultiLoopChildWatche...Kumar Aditya2024-06-214-719/+1
* 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