summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-115514: Fix incomplete writes after close while using ssl in asynci...Miss Islington (bot)2025-02-022-0/+203
* [3.13] gh-128479: fix asyncio staggered race leaking tasks, and logging unhan...Miss Islington (bot)2025-01-231-0/+27
* [3.13] gh-128588: gh-128550: remove eager tasks optimization that missed and ...Miss Islington (bot)2025-01-201-0/+50
* [3.13] gh-128552: fix refcycles in eager task creation (#128553) (#128585)Thomas Grainger2025-01-081-4/+59
* [3.13] gh-127655: Ensure `_SelectorSocketTransport.writelines` pauses the pro...Miss Islington (bot)2024-12-061-0/+12
* [3.13] gh-127258: Fix asyncio test_staggered_race_with_eager_tasks() (GH-1273...Miss Islington (bot)2024-11-291-1/+5
* [3.13] gh-126083: Fix a reference leak in `asyncio.Task` when reinitializing ...Miss Islington (bot)2024-10-311-0/+22
* [3.13] gh-125966: fix use-after-free on `fut->fut_callback0` due to an evil c...Miss Islington (bot)2024-10-271-0/+18
* [3.13] gh-125984: fix use-after-free on `fut->fut_{callback,context}0` due to...Miss Islington (bot)2024-10-271-2/+71
* [3.13] gh-118950: Fix SSLProtocol.connection_lost not being called when OSErr...Miss Islington (bot)2024-10-261-0/+48
* [3.13] gh-125969: fix OOB in `future_schedule_callbacks` due to an evil `call...Miss Islington (bot)2024-10-251-0/+33
* [3.13] GH-125789: fix `fut._callbacks` to always return a copy of callbacks (...Kumar Aditya2024-10-251-0/+18
* [3.13] gh-124858: fix happy eyeballs refcyles (GH-124859) (#124912)Miss Islington (bot)2024-10-231-0/+18
* [3.13] gh-124958: fix asyncio.TaskGroup and _PyFuture refcycles (GH-124959) (...Miss Islington (bot)2024-10-142-2/+112
* [3.13] gh-124309: fix staggered race on eager tasks (GH-124847) (#125339)Miss Islington (bot)2024-10-122-0/+73
* [3.13] gh-122957: Fix test flakiness in asyncio test in free-thread build (GH...Miss Islington (bot)2024-09-231-2/+4
* [3.13] gh-120226: Fix test_sendfile_close_peer_in_the_middle_of_receiving on ...Miss Islington (bot)2024-09-021-7/+4
* [3.13] gh-122136: test_asyncio: Don't fail if the kernel buffers more data th...Miss Islington (bot)2024-08-291-5/+13
* [3.13] gh-122695: Fix double-free when using `gc.get_referents` with a freed ...Peter Bierma2024-08-091-0/+8
* [3.13] gh-122332: Fix missing `NULL` check in `asyncio.Task.get_coro` (GH-122...Miss Islington (bot)2024-07-271-0/+12
* [3.13] gh-122187: Avoid TSan reported race in `run_udp_echo_server` (GH-12218...Miss Islington (bot)2024-07-251-2/+7
* [3.13] gh-117657: Skip tests that use threads after fork (GH-122194) (#122198)Miss Islington (bot)2024-07-231-0/+3
* [3.13] gh-87744: fix waitpid race while calling send_signal in asyncio (GH-12...Miss Islington (bot)2024-07-011-0/+15
* [3.13] gh-121025: Improve partialmethod.__repr__ (GH-121033) (#121037)Miss Islington (bot)2024-06-261-1/+1
* [3.13] gh-113892: Add a extra check to `ProactorEventLoop.sock_connect` to en...Miss Islington (bot)2024-06-011-2/+7
* [3.13] gh-119121: Fix and test `async.staggered.staggered_race` (GH-119173) (...Miss Islington (bot)2024-05-201-0/+97
* [3.13] gh-119064: Use os_helper.FakePath instead of pathlib.Path in tests (GH...Miss Islington (bot)2024-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