summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
* Fix pyflakes warnings: variable is assigned to but never used (#142294)Victor Stinner2025-12-084-5/+5
* gh-105836: Fix `asyncio.run_coroutine_threadsafe` leaving underlying cancelle...Kaisheng Xu2025-12-061-2/+2
* gh-141863: use `bytearray.take_bytes` in asyncio streams for better performan...Cody Maloney2025-11-241-22/+10
* Drop three unused imports (#141875)yihong2025-11-231-1/+1
* gh-103847: fix cancellation safety of `asyncio.create_subprocess_exec` (#140805)Kumar Aditya2025-11-121-0/+11
* gh-140251: colorize import statement formatting in asyncio console (#140252)Frost Ming2025-10-181-1/+4
* gh-139845: do not print twice in default asyncio REPL (#139846)yihong2025-10-091-1/+2
* gh-138703: clarify data buffer requirement of `asyncio.StreamWriter.write` (#...Kumar Aditya2025-10-041-2/+2
* gh-138899: fix `sys.ps1` in asyncio repl (#138900)yihong2025-10-011-0/+1
* gh-138958: remove unused variable in Lib/asyncio/streams.py (#138959)yihong2025-09-161-1/+0
* Improve permission error messages in pdb and asyncio.tools (#134290)ivonastojanovic2025-09-121-0/+16
* gh-136234: Fix `SelectorSocketTransport.writelines` to be robust to connectio...Bruce Merry2025-09-081-0/+7
* gh-134861: revert "Add CSV and BSV output formats to asyncio ps" (#138187)Kumar Aditya2025-08-282-58/+12
* Remove redundant assignment in asyncio.streams.StreamReaderProtocol.connectio...maurycy2025-08-071-1/+0
* gh-134861: Add 🍌SV output format to ``python -m asyncio ps`` (#137486)Daniele Parmeggiani2025-08-062-1/+9
* gh-134861: Add CSV output format to ``python -m asyncio ps`` (#134862)Daniele Parmeggiani2025-08-062-12/+50
* gh-137128: Remove outdated todo about coro_fns in asyncio (#137385)alexey semenyuk2025-08-041-1/+0
* gh-137341: Remove more word duplications (GH-137342)Serhiy Storchaka2025-08-031-2/+2
* gh-135444: fix `asyncio.DatagramTransport.sendto` to account for datagram hea...Justin Bronder2025-07-302-5/+8
* Fix Queue.shutdown docs for condition to unblock a join (gh-137088)Raymond Hettinger2025-07-251-3/+5
* Fix docs for Queue.shutdown (gh-137028)Raymond Hettinger2025-07-241-5/+2
* gh-136447: Use `self.loop` instead of global `loop` variable in asyncio REPL ...Justin Su2025-07-091-1/+1
* gh-134657: Remove newly added private names from asyncio.__all__ (#134665)Jelle Zijlstra2025-07-093-15/+23
* gh-135836: Fix `IndexError` in `asyncio.create_connection()` (#135875)Serhiy Storchaka2025-07-031-30/+35
* gh-135836: Fix `IndexError` in `asyncio.create_connection` with empty excepti...heliang666s2025-07-011-1/+4
* gh-135371: Fix asyncio introspection output to include internal coroutine cha...Pablo Galindo Salgado2025-06-141-67/+95
* gh-91048: Refactor and optimize remote debugging module (#134652)Pablo Galindo Salgado2025-05-251-2/+6
* gh-134451: Converted `asyncio.tools.CycleFoundException` from dataclass to a ...Evgeny Demchenko2025-05-231-3/+9
* gh-114177: avoid calling connection lost callbacks when loop is already close...Kumar Aditya2025-05-231-1/+6
* gh-90871: fix connection backlog offset in asyncio (gh-134392)Christian Harries2025-05-211-1/+1
* gh-86802: Fix asyncio memory leak; shielded task exceptions log once through ...Christian Harries2025-05-201-7/+29
* gh-134173: optimize state transfer between `concurrent.futures.Future` and `a...J. Nick Koston2025-05-181-10/+7
* gh-133893: asyncio.graph: Replace TextIO annotation with io.Writer (#133894)Sebastian Rittau2025-05-111-4/+2
* gh-91048: Add filename:line_no information to `asyncio pstree` (#133478)Łukasz Langa2025-05-052-3/+12
* gh-133346: Make theming support in _colorize extensible (GH-133347)Łukasz Langa2025-05-051-3/+4
* gh-128307: Support eager_start=<bool> in create_eager_task_factory and vario...Thomas Grainger2025-05-053-16/+7
* GH-91048: Minor fixes for ``_remotedebugging`` & rename to ``_remote_debuggin...Adam Turner2025-05-051-1/+1
* gh-91048: Add filename and line number to external inspection routines (GH-13...Pablo Galindo Salgado2025-05-041-0/+2
* GH-91048: Add utils for printing the call stack for asyncio tasks (#133284)Pablo Galindo Salgado2025-05-042-0/+244
* gh-86513: improve docs of loop.call_exception_handler (#132466)Kumar Aditya2025-04-131-0/+2
* gh-130322: drop deprecation of `asyncio.set_event_loop` (#132349)Kumar Aditya2025-04-123-9/+4
* gh-132307: Remove unnecessary check in `asyncio/base_events.py` (#132324)Stan Ulbrych2025-04-101-2/+1
* gh-131325: fix sendfile fallback implementation to drain data after writing t...Kumar Aditya2025-03-171-1/+1
* gh-128002: use efficient linked list implementation for eager tasks in asynci...Kumar Aditya2025-03-031-1/+0
* gh-129874: avoid mixing pure python and C impl in eager execution (#130515)Kumar Aditya2025-02-241-1/+1
* gh-128231: Use `runcode()` return value for failing early (GH-129488)Bartosz Sławecki2025-02-241-1/+1
* gh-129898: per-thread current task implementation in asyncio (#129899)Kumar Aditya2025-02-191-1/+1
* gh-130145: fix `loop.run_forever` when loop is already running (#130146)Kumar Aditya2025-02-151-1/+1
* gh-129874: avoid mixing pure python and C implementation of asyncio (#129875)Kumar Aditya2025-02-091-7/+7
* gh-115514: Fix incomplete writes after close while using ssl in asyncio(#128037)Vojtěch Boček2025-02-021-5/+7