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
*
gh-109538: Avoid RuntimeError when StreamWriter is deleted with closed loop (...
DPR
2023-11-15
1
-3/+5
*
gh-111246: Remove listening Unix socket on close (#111483)
Pierre Ossman (ThinLinc team)
2023-11-08
1
-1/+32
*
GH-110894: Call loop exception handler for exceptions in client_connected_cb ...
Kumar Aditya
2023-11-02
1
-0/+12
*
gh-79033: Try to fix asyncio.Server.wait_closed() again (GH-111336)
Guido van Rossum
2023-10-28
1
-2/+22
*
gh-110205: Fix asyncio ThreadedChildWatcher._join_threads() (#110884)
Guido van Rossum
2023-10-27
1
-9/+2
*
gh-111085: Fix invalid state handling in TaskGroup and Timeout (#111111)
Serhiy Storchaka
2023-10-21
2
-8/+10
*
gh-110961: Fixed asyncio.wait docstring to remove deprecated coroutine refere...
Bar Harel
2023-10-18
1
-2/+0
*
remove redundant call to attach_loop in watcher (#110847)
Thomas Grainger
2023-10-14
1
-2/+0
*
gh-110771: Decompose run_forever() into parts (#110773)
Russell Keith-Magee
2023-10-13
2
-31/+57
*
gh-94597: Add asyncio.EventLoop (#110723)
Thomas Grainger
2023-10-12
2
-1/+4
*
gh-110733: Micro-optimization in BaseEventLoop._run_once (#110735)
J. Nick Koston
2023-10-11
1
-2/+5
*
gh-109955 : Update state transition comments for asyncio.Task (#109910)
Kristján Valur Jónsson
2023-09-27
1
-7/+17
*
Remove loop from docstring for asyncio.streams.open_connection (#108528)
Tom Gillespie
2023-09-27
1
-3/+2
*
gh-109653: Remove unused imports in the `Lib/` directory (#109803)
Alex Waygood
2023-09-24
1
-1/+0
*
gh-109709: Fix asyncio test_stdin_broken_pipe() (#109710)
Victor Stinner
2023-09-22
1
-6/+8
*
gh-108973: Fix asyncio test_subprocess_consistent_callbacks() (#109431)
Victor Stinner
2023-09-20
1
-2/+1
*
gh-108903: Remove unneeded `lambda`s from `asyncio` (GH-108904)
Nikita Sobolev
2023-09-05
1
-3/+3
*
Fix patchcheck for `asyncio.tasks` (#108159)
Kumar Aditya
2023-08-20
1
-9/+9
*
GH-106684: raise `ResourceWarning` when `asyncio.StreamWriter` is not closed ...
Kumar Aditya
2023-08-05
1
-0/+6
*
gh-82500: Fix asyncio sendfile overflow on 32bit (#107056)
J. Nick Koston
2023-07-23
1
-0/+3
*
gh-106527: asyncio: optimize to add/remove readers and writers (#106528)
J. Nick Koston
2023-07-22
1
-35/+29
*
gh-106634: Corrected minor asyncio doc issues (#106671)
Chris Brett
2023-07-13
2
-2/+2
*
gh-106503: asyncio._SelectorSocketTransport: fix cyclic reference on close()....
Andrew Geng
2023-07-07
1
-0/+1
*
gh-106075: add `asyncio.taskgroups.__all__` to `asyncio.__all__` (#106090)
James Webber
2023-06-26
2
-1/+2
*
GH-105684: Require `asyncio.Task` implementations to support `set_name` metho...
Kumar Aditya
2023-06-13
3
-16/+3
*
gh-105331: Change `asyncio.sleep` to raise ``ValueError` for nan (#105641)
Jay
2023-06-12
1
-0/+4
*
gh-104340: Suppress warning about unawaited exception for closed pipe stdin (...
Guido van Rossum
2023-05-17
1
-0/+3
*
gh-98539: Make _SSLTransportProtocol.abort() safe to call when closed (#104474)
Sam Bull
2023-05-14
1
-1/+2
*
gh-97696 Remove unnecessary check for eager_start kwarg (#104188)
Jacob Bower
2023-05-09
1
-4/+17
*
gh-104144: Optimize gather to finish eagerly when all futures complete eagerl...
Itamar Ostricher
2023-05-06
1
-1/+12
*
gh-104144: Skip scheduling a done callback if a TaskGroup task completes eage...
Itamar Ostricher
2023-05-05
1
-2/+8
*
gh-97696: asyncio eager tasks factory (#102853)
Itamar Ostricher
2023-05-01
2
-26/+106
*
gh-83925: Make asyncio.subprocess communicate similar to non-asyncio (#18650)
Marek Marczykowski-Górecki
2023-04-28
1
-5/+6
*
gh-103607: Fix `pause_reading` to work when called from `connection_made` in ...
Itayazolay
2023-04-27
2
-24/+32
*
gh-103462: Ensure SelectorSocketTransport.writelines registers a writer when ...
Ali-Akber Saifee
2023-04-13
1
-0/+3
*
gh-102780: Fix uncancel() call in asyncio timeouts (#102815)
Kristján Valur Jónsson
2023-03-22
1
-3/+4
*
gh-102810: Add docstrings to the public-facing methods of `asyncio.Timeout` (...
JosephSBoyle
2023-03-19
1
-0/+12
*
GH-102748: remove legacy support for generator based coroutines from `asyncio...
Kumar Aditya
2023-03-16
1
-2/+1
*
GH-100112: avoid using iterable coroutines in asyncio internally (#100128)
Kumar Aditya
2023-03-16
1
-16/+6
*
gh-102560 Add docstrings to asyncio.TaskGroup (#102565)
JosephSBoyle
2023-03-15
1
-0/+18
*
Remove redundant `_ensure_future` in favor of `ensure_future` in `asyncio` (#...
Kumar Aditya
2023-03-07
1
-6/+2
*
gh-100226: Clarify StreamReader.read behavior (#101807)
Jan Gosmann
2023-02-17
1
-8/+9
*
GH-96764: rewrite `asyncio.wait_for` to use `asyncio.timeout` (#98518)
Kumar Aditya
2023-02-16
1
-48/+29
*
gh-101317: Add `ssl_shutdown_timeout` parameter for `asyncio.StreamWriter.sta...
beavailable
2023-02-01
1
-2/+4
*
gh-101143: Remove references to `TimerHandle` from `asyncio.base_events.BaseE...
J. Nick Koston
2023-01-21
1
-6/+3
*
GH-100573: Fix server hang caused by os.stat() on named pipe (Windows) (#100959)
Guido van Rossum
2023-01-13
1
-0/+5
*
gh-100160: Restore and deprecate implicit creation of an event loop (GH-100410)
Serhiy Storchaka
2023-01-13
1
-1/+23
*
GH-86508: skip binding to local addresses of different family in `asyncio.ope...
Kumar Aditya
2023-01-04
1
-2/+8
*
GH-91166: Implement zero copy writes for `SelectorSocketTransport` in asyncio...
Kumar Aditya
2022-12-24
1
-11/+75
*
gh-100344: Add C implementation for `asyncio.current_task` (#100345)
Itamar Ostricher
2022-12-22
1
-1/+4
[next]