summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-124594: Create and reuse the same context for the entire asyncio RE...Miss Islington (bot)2024-10-281-2/+4
* [3.12] gh-118950: Fix SSLProtocol.connection_lost not being called when OSErr...Miss Islington (bot)2024-10-261-1/+4
* [3.12] gh-124858: fix happy eyeballs refcyles (GH-124859) (#124913)Miss Islington (bot)2024-10-232-6/+13
* [3.12] gh-124958: fix asyncio.TaskGroup and _PyFuture refcycles (#124959) (#1...Thomas Grainger2024-10-172-13/+34
* [3.12] gh-124309: fix staggered race on eager tasks (GH-124847) (#125340)Miss Islington (bot)2024-10-121-3/+14
* [3.12] gh-124309: Revert eager task factory fix to prevent breaking downstrea...Miss Islington (bot)2024-10-012-24/+61
* [3.12] GH-124639: add back loop param to staggered_race (GH-124700) (#124744)Miss Islington (bot)2024-09-291-2/+8
* [3.12] gh-124309: Modernize the `staggered_race` implementation to support e...Kumar Aditya2024-09-262-73/+19
* [3.12] gh-112182: Replace StopIteration with RuntimeError for future (GH-1132...Miss Islington (bot)2024-08-151-3/+7
* [3.12] gh-121913: Use str(exc) instead of exc.strerror in `asyncio.base_event...Miss Islington (bot)2024-07-251-3/+2
* [3.12] gh-121957: Emit audit events for python -i and python -m asyncio (GH-1...Łukasz Langa2024-07-221-0/+2
* [3.12] Use Cirrus M1 macOS runners for CI (GH-119979) (GH-119987)Łukasz Langa2024-06-031-1/+0
* [3.12] gh-113892: Add a extra check to `ProactorEventLoop.sock_connect` to en...Miss Islington (bot)2024-06-011-0/+2
* [3.12] gh-91227: Ignore ERROR_PORT_UNREACHABLE in proactor recvfrom() (GH-320...Miss Islington (bot)2024-03-251-12/+17
* [3.12] gh-116773: Fix overlapped memory corruption crash (GH-116774) (#117078)jkriegshauser2024-03-201-7/+7
* [3.12] chore: fix typos (#116345) (#116370)Terry Jan Reedy2024-03-051-1/+1
* [3.12] gh-111358: Fix timeout behaviour in BaseEventLoop.shutdown_default_exe...Miss Islington (bot)2024-02-191-9/+11
* [3.12] gh-114887 Reject only sockets of type SOCK_STREAM in create_da… (#11...Travis Howse2024-02-041-2/+2
* [3.12] gh-109534: fix reference leak when SSL handshake fails (GH-114074) (#1...Miss Islington (bot)2024-02-012-0/+5
* [3.12] gh-75128: Ignore EADDRNOTAVAIL error in asyncio.BaseEventLoop.create_s...Miss Islington (bot)2024-01-221-3/+17
* [3.12] gh-95649: Document that asyncio contains uvloop code (GH-107536) (#114...Alois Klink2024-01-143-0/+12
* [3.12] gh-113538: Don't error in stream reader protocol callback when task is...Miss Islington (bot)2024-01-041-0/+3
* [3.12] GH-113214: Fix SSLProto exception handling in SSL-over-SSL scenarios (...Miss Islington (bot)2023-12-211-7/+6
* [3.12] gh-109538: Catch closed loop runtime error and issue warning (GH-11198...DPR2023-11-161-2/+6
* [3.12] GH-110894: Call loop exception handler for exceptions in client_connec...Kumar Aditya2023-11-021-0/+12
* [3.12] gh-79033: Try to fix asyncio.Server.wait_closed() again (GH-111336) (#...Miss Islington (bot)2023-10-281-2/+22
* [3.12] gh-110205: Fix asyncio ThreadedChildWatcher._join_threads() (GH-110884...Miss Islington (bot)2023-10-271-9/+2
* [3.12] gh-111085: Fix invalid state handling in TaskGroup and Timeout (GH-111...Miss Islington (bot)2023-10-212-8/+10
* [3.12] remove redundant call to attach_loop in watcher (GH-110847) (#110867)Miss Islington (bot)2023-10-141-2/+0
* [3.12] gh-109955 : Update state transition comments for asyncio.Task (GH-1099...Miss Islington (bot)2023-10-021-7/+17
* [3.12] Remove loop from docstring for asyncio.streams.open_connection (GH-108...Miss Islington (bot)2023-10-021-3/+2
* [3.12] gh-109709: Fix asyncio test_stdin_broken_pipe() (GH-109710) (#109731)Miss Islington (bot)2023-10-021-6/+8
* [3.12] gh-108973: Fix asyncio test_subprocess_consistent_callbacks() (GH-1094...Miss Islington (bot)2023-10-021-2/+1
* [3.12] Fix patchcheck for `asyncio.tasks` (GH-108159) (#108160)Miss Islington (bot)2023-08-201-9/+9
* [3.12] GH-106684: Close `asyncio.StreamWriter` when `asyncio.StreamWriter` i...Miss Islington (bot)2023-08-101-0/+4
* [3.12] gh-106634: Corrected minor asyncio doc issues (GH-106671) (#106712)Miss Islington (bot)2023-07-142-2/+2
* [3.12] gh-106503: asyncio._SelectorSocketTransport: fix cyclic reference on c...Miss Islington (bot)2023-07-071-0/+1
* [3.12] gh-106075: add `asyncio.taskgroups.__all__` to `asyncio.__all__` (GH-1...Miss Islington (bot)2023-06-262-1/+2
* gh-104340: Suppress warning about unawaited exception for closed pipe stdin (...Guido van Rossum2023-05-171-0/+3
* gh-98539: Make _SSLTransportProtocol.abort() safe to call when closed (#104474)Sam Bull2023-05-141-1/+2
* gh-97696 Remove unnecessary check for eager_start kwarg (#104188)Jacob Bower2023-05-091-4/+17
* gh-104144: Optimize gather to finish eagerly when all futures complete eagerl...Itamar Ostricher2023-05-061-1/+12
* gh-104144: Skip scheduling a done callback if a TaskGroup task completes eage...Itamar Ostricher2023-05-051-2/+8
* gh-97696: asyncio eager tasks factory (#102853)Itamar Ostricher2023-05-012-26/+106
* gh-83925: Make asyncio.subprocess communicate similar to non-asyncio (#18650)Marek Marczykowski-Górecki2023-04-281-5/+6
* gh-103607: Fix `pause_reading` to work when called from `connection_made` in ...Itayazolay2023-04-272-24/+32
* gh-103462: Ensure SelectorSocketTransport.writelines registers a writer when ...Ali-Akber Saifee2023-04-131-0/+3
* gh-102780: Fix uncancel() call in asyncio timeouts (#102815)Kristján Valur Jónsson2023-03-221-3/+4
* gh-102810: Add docstrings to the public-facing methods of `asyncio.Timeout` (...JosephSBoyle2023-03-191-0/+12
* GH-102748: remove legacy support for generator based coroutines from `asyncio...Kumar Aditya2023-03-161-2/+1