summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-118950: Fix SSLProtocol.connection_lost not being called when OSErr...Miss Islington (bot)2024-10-261-1/+4
* [3.13] gh-124858: fix happy eyeballs refcyles (GH-124859) (#124912)Miss Islington (bot)2024-10-232-6/+13
* [3.13] gh-124594: Create and reuse the same context for the entire asyncio RE...Miss Islington (bot)2024-10-151-2/+4
* [3.13] gh-124958: fix asyncio.TaskGroup and _PyFuture refcycles (GH-124959) (...Miss Islington (bot)2024-10-142-13/+34
* [3.13] gh-124309: fix staggered race on eager tasks (GH-124847) (#125339)Miss Islington (bot)2024-10-121-3/+14
* [3.13] gh-120221: Support KeyboardInterrupt in asyncio REPL (GH-123795) (#123...Miss Islington (bot)2024-09-061-0/+10
* [3.13] gh-121913: Use str(exc) instead of exc.strerror in `asyncio.base_event...Miss Islington (bot)2024-07-251-3/+2
* [3.13] gh-121957: Emit audit events for `python -i` and `python -m asyncio` (...Miss Islington (bot)2024-07-221-0/+5
* [3.13] gh-121790: Fix interactive console initialization (GH-121793) (GH-121822)Miss Islington (bot)2024-07-151-18/+9
* [3.13] gh-121711: Set `-m asyncio` return_code to 1 for ENOTTY (GH-121714) (G...Miss Islington (bot)2024-07-131-1/+2
* [3.13] gh-119909: Fix ``NameError`` in ``asyncio`` REPL (GH-121341) (#121447)Miss Islington (bot)2024-07-061-1/+1
* [3.13] gh-87744: fix waitpid race while calling send_signal in asyncio (GH-12...Miss Islington (bot)2024-07-011-9/+26
* [3.13] gh-113892: Add a extra check to `ProactorEventLoop.sock_connect` to en...Miss Islington (bot)2024-06-011-0/+2
* [3.13] gh-118894: Make asyncio REPL use pyrepl (GH-119433) (#119884)Miss Islington (bot)2024-05-311-18/+71
* [3.13] gh-119121: Fix and test `async.staggered.staggered_race` (GH-119173) (...Miss Islington (bot)2024-05-201-2/+1
* [3.13] gh-118817: Fix `asyncio REPL` on Windows (GH-118819) (#118847)Miss Islington (bot)2024-05-091-3/+4
* gh-117722: Fix Stream.readuntil with non-bytes buffer objects (#117723)Bruce Merry2024-04-111-5/+5
* gh-116720: Fix corner cases of taskgroups (#117407)Guido van Rossum2024-04-092-6/+15
* gh-81322: support multiple separators in StreamReader.readuntil (#16429)Bruce Merry2024-04-081-21/+44
* gh-96471: Correct documentation for asyncio queue shutdown (#117621)Laurie O2024-04-081-2/+4
* gh-96471: Add asyncio queue shutdown (#104228)Laurie O2024-04-061-3/+65
* gh-117459: Keep the traceback in _convert_future_exc (#117460)rsp4jack2024-04-041-4/+2
* gh-77714: Provide an async iterator version of as_completed (GH-22491)Justin Turner Arthur2024-04-011-44/+108
* gh-91227: Ignore ERROR_PORT_UNREACHABLE in proactor recvfrom() (#32011)Erik Soma2024-03-231-12/+17
* gh-116773: Ensure overlapped objects on Windows are not deallocated too early...jkriegshauser2024-03-201-7/+7
* gh-113538: Add asycio.Server.{close,abort}_clients (redo) (#116784)Pierre Ossman (ThinLinc team)2024-03-184-12/+31
* gh-113538: Revert "gh-113538: Add asycio.Server.{close,abort}_clients (#11443...Guido van Rossum2024-03-124-31/+12
* gh-113538: Add asycio.Server.{close,abort}_clients (#114432)Pierre Ossman (ThinLinc team)2024-03-114-12/+31
* gh-115957: Close coroutine if TaskGroup.create_task() raises an error (#116009)Jason Zhang2024-03-061-0/+3
* chore: fix typos (#116345)cui fliter2024-03-051-1/+1
* gh-84995: Run sys.__interactivehook__() on asyncio REPL startup (#20517)Rémi Lapeyre2024-03-011-0/+16
* gh-112997: Don't log arguments in asyncio unless debugging (#115667)Pierre Ossman (ThinLinc team)2024-02-282-9/+19
* gh-114914: Avoid keeping dead StreamWriter alive (#115661)Pierre Ossman (ThinLinc team)2024-02-281-10/+4
* gh-111358: Fix timeout behaviour in BaseEventLoop.shutdown_default_executor (...Jamie Phan2024-02-191-9/+11
* gh-113812: Allow DatagramTransport.sendto to send empty data (#115199)Jamie Phan2024-02-173-7/+4
* gh-114887 Reject only sockets of type SOCK_STREAM in create_datagram_endpoint...Travis Howse2024-02-031-2/+2
* gh-112202: Ensure that condition.notify() succeeds even when racing with Task...Kristján Valur Jónsson2024-02-031-49/+63
* gh-109534: fix reference leak when SSL handshake fails (#114074)Jamie Phan2024-02-012-0/+5
* TaskGroup: Use explicit None check for cancellation error (#114708)Matan Perelman2024-01-291-1/+1
* gh-75128: Ignore EADDRNOTAVAIL error in asyncio.BaseEventLoop.create_server()...Serhiy Storchaka2024-01-221-3/+17
* gh-114281: Remove incorrect type hints from `asyncio.staggered` (#114282)Nikita Sobolev2024-01-201-11/+1
* gh-95649: Document that asyncio contains uvloop code (#107536)Alois Klink2024-01-123-0/+12
* gh-96037: Always insert TimeoutError when exit an expired asyncio.timeout() b...Serhiy Storchaka2024-01-101-2/+17
* gh-112182: Replace StopIteration with RuntimeError for future (#113220)Jamie Phan2024-01-101-3/+7
* gh-113848: Handle CancelledError subclasses in asyncio TaskGroup() and timeou...Serhiy Storchaka2024-01-092-7/+10
* GH-111693: Propagate correct asyncio.CancelledError instance out of asyncio.C...Kristján Valur Jónsson2024-01-082-25/+39
* gh-113538: Don't error in stream reader protocol callback when task is cancel...Guido van Rossum2024-01-041-0/+3
* gh-112800: Ignore PermissionError on SubprocessTransport.close() in asyncio (...Allison Karlitskaya2023-12-241-1/+2
* GH-113214: Fix SSLProto exception handling in SSL-over-SSL scenarios (#113334)Martijn Pieters2023-12-201-7/+6
* gh-101336: Add keep_alive keyword arg for asyncio create_server() (#112485)beavailable2023-12-132-0/+8