index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
asyncio
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix pyflakes warnings: variable is assigned to but never used (#142294)
Victor Stinner
2025-12-08
4
-5/+5
*
gh-105836: Fix `asyncio.run_coroutine_threadsafe` leaving underlying cancelle...
Kaisheng Xu
2025-12-06
1
-2/+2
*
gh-141863: use `bytearray.take_bytes` in asyncio streams for better performan...
Cody Maloney
2025-11-24
1
-22/+10
*
Drop three unused imports (#141875)
yihong
2025-11-23
1
-1/+1
*
gh-103847: fix cancellation safety of `asyncio.create_subprocess_exec` (#140805)
Kumar Aditya
2025-11-12
1
-0/+11
*
gh-140251: colorize import statement formatting in asyncio console (#140252)
Frost Ming
2025-10-18
1
-1/+4
*
gh-139845: do not print twice in default asyncio REPL (#139846)
yihong
2025-10-09
1
-1/+2
*
gh-138703: clarify data buffer requirement of `asyncio.StreamWriter.write` (#...
Kumar Aditya
2025-10-04
1
-2/+2
*
gh-138899: fix `sys.ps1` in asyncio repl (#138900)
yihong
2025-10-01
1
-0/+1
*
gh-138958: remove unused variable in Lib/asyncio/streams.py (#138959)
yihong
2025-09-16
1
-1/+0
*
Improve permission error messages in pdb and asyncio.tools (#134290)
ivonastojanovic
2025-09-12
1
-0/+16
*
gh-136234: Fix `SelectorSocketTransport.writelines` to be robust to connectio...
Bruce Merry
2025-09-08
1
-0/+7
*
gh-134861: revert "Add CSV and BSV output formats to asyncio ps" (#138187)
Kumar Aditya
2025-08-28
2
-58/+12
*
Remove redundant assignment in asyncio.streams.StreamReaderProtocol.connectio...
maurycy
2025-08-07
1
-1/+0
*
gh-134861: Add 🍌SV output format to ``python -m asyncio ps`` (#137486)
Daniele Parmeggiani
2025-08-06
2
-1/+9
*
gh-134861: Add CSV output format to ``python -m asyncio ps`` (#134862)
Daniele Parmeggiani
2025-08-06
2
-12/+50
*
gh-137128: Remove outdated todo about coro_fns in asyncio (#137385)
alexey semenyuk
2025-08-04
1
-1/+0
*
gh-137341: Remove more word duplications (GH-137342)
Serhiy Storchaka
2025-08-03
1
-2/+2
*
gh-135444: fix `asyncio.DatagramTransport.sendto` to account for datagram hea...
Justin Bronder
2025-07-30
2
-5/+8
*
Fix Queue.shutdown docs for condition to unblock a join (gh-137088)
Raymond Hettinger
2025-07-25
1
-3/+5
*
Fix docs for Queue.shutdown (gh-137028)
Raymond Hettinger
2025-07-24
1
-5/+2
*
gh-136447: Use `self.loop` instead of global `loop` variable in asyncio REPL ...
Justin Su
2025-07-09
1
-1/+1
*
gh-134657: Remove newly added private names from asyncio.__all__ (#134665)
Jelle Zijlstra
2025-07-09
3
-15/+23
*
gh-135836: Fix `IndexError` in `asyncio.create_connection()` (#135875)
Serhiy Storchaka
2025-07-03
1
-30/+35
*
gh-135836: Fix `IndexError` in `asyncio.create_connection` with empty excepti...
heliang666s
2025-07-01
1
-1/+4
*
gh-135371: Fix asyncio introspection output to include internal coroutine cha...
Pablo Galindo Salgado
2025-06-14
1
-67/+95
*
gh-91048: Refactor and optimize remote debugging module (#134652)
Pablo Galindo Salgado
2025-05-25
1
-2/+6
*
gh-134451: Converted `asyncio.tools.CycleFoundException` from dataclass to a ...
Evgeny Demchenko
2025-05-23
1
-3/+9
*
gh-114177: avoid calling connection lost callbacks when loop is already close...
Kumar Aditya
2025-05-23
1
-1/+6
*
gh-90871: fix connection backlog offset in asyncio (gh-134392)
Christian Harries
2025-05-21
1
-1/+1
*
gh-86802: Fix asyncio memory leak; shielded task exceptions log once through ...
Christian Harries
2025-05-20
1
-7/+29
*
gh-134173: optimize state transfer between `concurrent.futures.Future` and `a...
J. Nick Koston
2025-05-18
1
-10/+7
*
gh-133893: asyncio.graph: Replace TextIO annotation with io.Writer (#133894)
Sebastian Rittau
2025-05-11
1
-4/+2
*
gh-91048: Add filename:line_no information to `asyncio pstree` (#133478)
Łukasz Langa
2025-05-05
2
-3/+12
*
gh-133346: Make theming support in _colorize extensible (GH-133347)
Łukasz Langa
2025-05-05
1
-3/+4
*
gh-128307: Support eager_start=<bool> in create_eager_task_factory and vario...
Thomas Grainger
2025-05-05
3
-16/+7
*
GH-91048: Minor fixes for ``_remotedebugging`` & rename to ``_remote_debuggin...
Adam Turner
2025-05-05
1
-1/+1
*
gh-91048: Add filename and line number to external inspection routines (GH-13...
Pablo Galindo Salgado
2025-05-04
1
-0/+2
*
GH-91048: Add utils for printing the call stack for asyncio tasks (#133284)
Pablo Galindo Salgado
2025-05-04
2
-0/+244
*
gh-86513: improve docs of loop.call_exception_handler (#132466)
Kumar Aditya
2025-04-13
1
-0/+2
*
gh-130322: drop deprecation of `asyncio.set_event_loop` (#132349)
Kumar Aditya
2025-04-12
3
-9/+4
*
gh-132307: Remove unnecessary check in `asyncio/base_events.py` (#132324)
Stan Ulbrych
2025-04-10
1
-2/+1
*
gh-131325: fix sendfile fallback implementation to drain data after writing t...
Kumar Aditya
2025-03-17
1
-1/+1
*
gh-128002: use efficient linked list implementation for eager tasks in asynci...
Kumar Aditya
2025-03-03
1
-1/+0
*
gh-129874: avoid mixing pure python and C impl in eager execution (#130515)
Kumar Aditya
2025-02-24
1
-1/+1
*
gh-128231: Use `runcode()` return value for failing early (GH-129488)
Bartosz Sławecki
2025-02-24
1
-1/+1
*
gh-129898: per-thread current task implementation in asyncio (#129899)
Kumar Aditya
2025-02-19
1
-1/+1
*
gh-130145: fix `loop.run_forever` when loop is already running (#130146)
Kumar Aditya
2025-02-15
1
-1/+1
*
gh-129874: avoid mixing pure python and C implementation of asyncio (#129875)
Kumar Aditya
2025-02-09
1
-7/+7
*
gh-115514: Fix incomplete writes after close while using ssl in asyncio(#128037)
Vojtěch Boček
2025-02-02
1
-5/+7
[next]