summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-75128: Ignore EADDRNOTAVAIL error in asyncio.BaseEventLoop.create_s...Miss Islington (bot)2024-01-221-3/+17
* [3.11] gh-95649: Document that asyncio contains uvloop code (GH-107536) (#114...Alois Klink2024-01-143-0/+12
* [3.11] gh-113538: Don't error in stream reader protocol callback when task is...Miss Islington (bot)2024-01-041-0/+3
* [3.11] GH-113214: Fix SSLProto exception handling in SSL-over-SSL scenarios (...Miss Islington (bot)2023-12-211-7/+6
* [3.11] gh-109538: Catch closed loop runtime error and issue warning (GH-11198...DPR2023-11-201-2/+5
* [3.11] [3.12] GH-110894: Call loop exception handler for exceptions in client...Miss Islington (bot)2023-11-041-0/+12
* [3.11] gh-110205: Fix asyncio ThreadedChildWatcher._join_threads() (GH-110884...Miss Islington (bot)2023-10-271-9/+2
* [3.11] gh-111085: Fix invalid state handling in TaskGroup and Timeout (GH-111...Miss Islington (bot)2023-10-212-8/+10
* [3.11] remove redundant call to attach_loop in watcher (GH-110847) (#110870)Thomas Grainger2023-10-151-2/+0
* [3.11] gh-109955 : Update state transition comments for asyncio.Task (GH-1099...Miss Islington (bot)2023-09-291-7/+17
* [3.11] Remove loop from docstring for asyncio.streams.open_connection (GH-108...Miss Islington (bot)2023-09-271-3/+2
* [3.11] gh-109709: Fix asyncio test_stdin_broken_pipe() (#109710) (#109735)Victor Stinner2023-09-221-5/+7
* [3.11] [3.12] GH-106684: Close `asyncio.StreamWriter` when `asyncio.StreamWr...Miss Islington (bot)2023-08-101-0/+4
* [3.11] gh-106634: Corrected minor asyncio doc issues (GH-106671) (#106711)Miss Islington (bot)2023-07-292-2/+2
* [3.11] gh-104340: Suppress warning about unawaited exception for closed pipe ...Miss Islington (bot)2023-05-181-0/+3
* [3.11] gh-98539: Make _SSLTransportProtocol.abort() safe to call when closed ...Miss Islington (bot)2023-05-141-1/+2
* [3.11] gh-103607: Fix `pause_reading` to work when called from `connection_ma...Miss Islington (bot)2023-04-272-24/+32
* gh-102780: Fix uncancel() call in asyncio timeouts (GH-102815)Miss Islington (bot)2023-03-221-3/+4
* gh-102810: Add docstrings to the public-facing methods of `asyncio.Timeout` (...Miss Islington (bot)2023-03-191-0/+12
* gh-102560 Add docstrings to asyncio.TaskGroup (GH-102565)Miss Islington (bot)2023-03-151-0/+18
* [3.11] gh-100226: Clarify StreamReader.read behavior (GH-101807) (#102001)Miss Islington (bot)2023-02-231-8/+9
* gh-101143: Remove references to `TimerHandle` from `asyncio.base_events.BaseE...Miss Islington (bot)2023-01-211-6/+3
* [3.11] GH-100573: Fix server hang caused by os.stat() on named pipe (Windows)...Miss Islington (bot)2023-01-131-0/+5
* [3.11] gh-100160: Remove any deprecation warnings in asyncio.get_event_loop()...Serhiy Storchaka2023-01-101-15/+0
* GH-86508: skip binding to local addresses of different family in `asyncio.ope...Miss Islington (bot)2023-01-041-2/+8
* GH-100133: fix `asyncio` subprocess losing `stderr` and `stdout` output (GH-1...Miss Islington (bot)2022-12-211-3/+0
* [3.11] gh-93453: Only emit deprecation warning in asyncio.get_event_loop when...Serhiy Storchaka2022-12-061-3/+19
* [3.11] gh-88863: Clear ref cycles to resolve leak when asyncio.open_connectio...Dong Uk, Kang2022-11-233-12/+33
* [3.11] gh-99277: remove older version of `get_write_buffer_limits` (GH-99280)...Miss Islington (bot)2022-11-101-6/+0
* gh-98703: Fix asyncio proactor_events calling _call_connection_lost multiple ...Miss Islington (bot)2022-10-271-0/+2
* [3.11] GH-89237: fix hang in proactor `subprocess.wait_closed()` (GH-98572) (...Miss Islington (bot)2022-10-251-1/+3
* [3.11] GH-98543: Fix `asyncio.TaskGroup` to not keep reference to errors aft...Miss Islington (bot)2022-10-241-5/+5
* [3.11] GH-98539: fix ref cycle in `_SSLProtocolTransport` after close (GH-98...Miss Islington (bot)2022-10-241-2/+5
* bpo-46364: Use sockets for stdin of asyncio only on AIX (GH-30596)Miss Islington (bot)2022-10-131-4/+3
* GH-90985: Revert "Deprecate passing a message into cancel()" (GH-97999)Miss Islington (bot)2022-10-072-11/+0
* [3.11] GH-88050: fix race in closing subprocess pipe in asyncio (GH-97951) (...Miss Islington (bot)2022-10-061-1/+3
* gh-88050: Fix asyncio subprocess to kill process cleanly when process is bloc...Miss Islington (bot)2022-10-051-6/+7
* gh-94732: Fix KeyboardInterrupt race in asyncio run_forever() (GH-97765)Miss Islington (bot)2022-10-031-3/+4
* gh-90908: Document asyncio.Task.cancelling() and asyncio.Task.uncancel() (GH-...Miss Islington (bot)2022-10-011-2/+2
* GH-96827: Don't touch closed loops from executor threads (GH-96837)Miss Islington (bot)2022-09-302-2/+6
* gh-97545: Make Semaphore run faster. (GH-97549)Miss Islington (bot)2022-09-271-21/+17
* GH-85760: Fix race in calling process_exited callback too early (GH-97009)Miss Islington (bot)2022-09-221-1/+2
* gh-90155: Fix bug in asyncio.Semaphore and strengthen FIFO guarantee (GH-93222)Miss Islington (bot)2022-09-221-22/+42
* gh-94972: document that shield users need to keep a reference to their task (...Miss Islington (bot)2022-09-101-2/+9
* GH-74116: Allow multiple drain waiters for asyncio.StreamWriter (GH-94705) (#...Miss Islington (bot)2022-08-301-19/+16
* gh-90467: StreamReaderProtocol - add strong reference to created task (GH-963...Miss Islington (bot)2022-08-301-1/+3
* GH-95704: Don't suppress errors from tasks when TG is cancelled (GH-95761)Miss Islington (bot)2022-08-171-4/+3
* GH-95899: fix asyncio.Runner to call set_event_loop only once (GH-95900) (#96...Miss Islington (bot)2022-08-151-3/+5
* gh-95724: Clarify taskgroups.py license. (GH-95847)Miss Islington (bot)2022-08-111-1/+2
* gh-91323: Revert "Allow overriding a future compliance check in asyncio.Task ...Miss Islington (bot)2022-08-041-5/+1