summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* gh-142556: fix crash when a task gets re-registered during finalization in `a...Kumar Aditya2025-12-111-0/+23
* gh-142489: Increase ssl_handshake_timeout in asyncio tests (#142523)Victor Stinner2025-12-101-23/+17
* gh-105836: Fix `asyncio.run_coroutine_threadsafe` leaving underlying cancelle...Kaisheng Xu2025-12-061-0/+24
* gh-103847: fix cancellation safety of `asyncio.create_subprocess_exec` (#140805)Kumar Aditya2025-11-121-1/+39
* gh-139894: fix incorrect sharing of current task while forking in `asyncio` ...Kumar Aditya2025-10-101-25/+61
* gh-105987: unskip `test_issue105987` from `test_asyncio.test_eager_task_facto...Kumar Aditya2025-10-031-3/+2
* gh-136234: Fix `SelectorSocketTransport.writelines` to be robust to connectio...Bruce Merry2025-09-081-0/+16
* gh-135427: Fix DeprecationWarning for os.fork when run in threads with -Werro...Rani Pinchuk2025-08-261-24/+28
* gh-135444: fix `asyncio.DatagramTransport.sendto` to account for datagram hea...Justin Bronder2025-07-302-0/+43
* gh-134657: Remove newly added private names from asyncio.__all__ (#134665)Jelle Zijlstra2025-07-0934-62/+68
* gh-98388: add tests for happy eyeballs (#136368)Kumar Aditya2025-07-071-0/+88
* gh-135836: Fix `IndexError` in `asyncio.create_connection()` (#135875)Serhiy Storchaka2025-07-031-0/+29
* gh-135836: Fix `IndexError` in `asyncio.create_connection` with empty excepti...heliang666s2025-07-011-0/+30
* gh-135371: Fix asyncio introspection output to include internal coroutine cha...Pablo Galindo Salgado2025-06-141-350/+1210
* gh-90871: fix connection backlog offset in asyncio (gh-134392)Christian Harries2025-05-211-2/+14
* gh-86802: Fix asyncio memory leak; shielded task exceptions log once through ...Christian Harries2025-05-201-0/+40
* gh-134173: optimize state transfer between `concurrent.futures.Future` and `a...J. Nick Koston2025-05-181-4/+54
* gh-133677: Fix tests when running in non-UTF-8 locale (GH-133865)Serhiy Storchaka2025-05-121-4/+4
* gh-133454: Mark tests with many threads that use much memory as bigmem (GH-13...Serhiy Storchaka2025-05-081-4/+6
* gh-91048: Add filename:line_no information to `asyncio pstree` (#133478)Łukasz Langa2025-05-051-17/+24
* gh-128307: Support eager_start=<bool> in create_eager_task_factory and vario...Thomas Grainger2025-05-052-2/+68
* GH-91048: Add utils for printing the call stack for asyncio tasks (#133284)Pablo Galindo Salgado2025-05-041-0/+839
* gh-133306: Use \z instead of \Z in regular expressions in the stdlib (GH-133337)Serhiy Storchaka2025-05-031-1/+1
* gh-133016: Fix a reference to removed `asyncio.futures.TimeoutError` (#133019)John2025-04-261-2/+1
* gh-130322: drop deprecation of `asyncio.set_event_loop` (#132349)Kumar Aditya2025-04-128-44/+36
* Use `assert*` comparison methods in `test_timer_comparison` (#129513)alexey semenyuk2025-03-281-35/+54
* gh-131645: fix ResourceWarnings in `test_asyncio.test_events` (#131646)Thomas Grainger2025-03-241-10/+11
* gh-128002: fix tsan race in closing socket in `test_sslproto` (#131399)Kumar Aditya2025-03-181-7/+6
* gh-128002: fix tsan race in closing socket in `test_ssl` (#131397)Kumar Aditya2025-03-181-7/+5
* gh-131152: Remove unused imports from tests (#131153)Victor Stinner2025-03-134-10/+1
* fix various warnings in `test_asyncio.test_tasks` (#131109)Kumar Aditya2025-03-111-3/+6
* gh-130736: Fix asyncio test_shutdown_default_executor_timeout() (#130800)Victor Stinner2025-03-041-5/+10
* gh-129874: improve tests to use correct implementations in asyncio (#130516)Kumar Aditya2025-02-242-5/+27
* improve `test_tasks` to use correct idiom for starting task in asyncio (#130257)Kumar Aditya2025-02-181-3/+1
* Replace non-breaking spaces with normal spaces (#130116)AN Long2025-02-161-1/+1
* gh-130145: fix `loop.run_forever` when loop is already running (#130146)Kumar Aditya2025-02-151-0/+16
* gh-129289: fix crash when task finalizer is not called in asyncio (#129840)Kumar Aditya2025-02-101-0/+16
* gh-129874: improve test_events to use correct task implementation (#129891)Kumar Aditya2025-02-091-1/+14
* gh-129874: improve `test_tasks` in asyncio to use correct internal functions ...Kumar Aditya2025-02-091-19/+45
* gh-129874: improve asyncio tests to use correct internal functions (#129887)Kumar Aditya2025-02-093-7/+110
* improve `test_log_destroyed_pending_task` in asyncio (#129821)Kumar Aditya2025-02-071-4/+6
* fix tests in `test_asyncio.test_tasks` to use correct `all_tasks` (#129815)Kumar Aditya2025-02-071-3/+2
* gh-128002: use per threads tasks linked list in asyncio (#128869)Kumar Aditya2025-02-061-1/+18
* gh-115514: Fix incomplete writes after close while using ssl in asyncio(#128037)Vojtěch Boček2025-02-022-0/+203
* gh-128002: fix `test_all_tasks_different_thread` in asyncio (#129267)Kumar Aditya2025-01-241-3/+7
* gh-128002: use `_PyObject_SetMaybeWeakref` when creating tasks in asyncio (#1...Kumar Aditya2025-01-241-0/+33
* gh-128479: fix asyncio staggered race leaking tasks, and logging unhandled ex...Thomas Grainger2025-01-231-0/+27
* GH-91048: Add utils for capturing async call stack for asyncio programs and e...Yury Selivanov2025-01-221-0/+436
* gh-129158: Fix unwanted trailing whitespace in test_asyncio.test_subprocess (...Łukasz Langa2025-01-221-1/+1
* gh-129158: Ensure we restore unix_events.can_use_pidfd after SubprocessThread...Pablo Galindo Salgado2025-01-221-0/+5