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-113538: Revert "gh-113538: Add asycio.Server.{close,abort}_clients (#11443...
Guido van Rossum
2024-03-12
4
-31/+12
*
gh-113538: Add asycio.Server.{close,abort}_clients (#114432)
Pierre Ossman (ThinLinc team)
2024-03-11
4
-12/+31
*
gh-115957: Close coroutine if TaskGroup.create_task() raises an error (#116009)
Jason Zhang
2024-03-06
1
-0/+3
*
chore: fix typos (#116345)
cui fliter
2024-03-05
1
-1/+1
*
gh-84995: Run sys.__interactivehook__() on asyncio REPL startup (#20517)
Rémi Lapeyre
2024-03-01
1
-0/+16
*
gh-112997: Don't log arguments in asyncio unless debugging (#115667)
Pierre Ossman (ThinLinc team)
2024-02-28
2
-9/+19
*
gh-114914: Avoid keeping dead StreamWriter alive (#115661)
Pierre Ossman (ThinLinc team)
2024-02-28
1
-10/+4
*
gh-111358: Fix timeout behaviour in BaseEventLoop.shutdown_default_executor (...
Jamie Phan
2024-02-19
1
-9/+11
*
gh-113812: Allow DatagramTransport.sendto to send empty data (#115199)
Jamie Phan
2024-02-17
3
-7/+4
*
gh-114887 Reject only sockets of type SOCK_STREAM in create_datagram_endpoint...
Travis Howse
2024-02-03
1
-2/+2
*
gh-112202: Ensure that condition.notify() succeeds even when racing with Task...
Kristján Valur Jónsson
2024-02-03
1
-49/+63
*
gh-109534: fix reference leak when SSL handshake fails (#114074)
Jamie Phan
2024-02-01
2
-0/+5
*
TaskGroup: Use explicit None check for cancellation error (#114708)
Matan Perelman
2024-01-29
1
-1/+1
*
gh-75128: Ignore EADDRNOTAVAIL error in asyncio.BaseEventLoop.create_server()...
Serhiy Storchaka
2024-01-22
1
-3/+17
*
gh-114281: Remove incorrect type hints from `asyncio.staggered` (#114282)
Nikita Sobolev
2024-01-20
1
-11/+1
*
gh-95649: Document that asyncio contains uvloop code (#107536)
Alois Klink
2024-01-12
3
-0/+12
*
gh-96037: Always insert TimeoutError when exit an expired asyncio.timeout() b...
Serhiy Storchaka
2024-01-10
1
-2/+17
*
gh-112182: Replace StopIteration with RuntimeError for future (#113220)
Jamie Phan
2024-01-10
1
-3/+7
*
gh-113848: Handle CancelledError subclasses in asyncio TaskGroup() and timeou...
Serhiy Storchaka
2024-01-09
2
-7/+10
*
GH-111693: Propagate correct asyncio.CancelledError instance out of asyncio.C...
Kristján Valur Jónsson
2024-01-08
2
-25/+39
*
gh-113538: Don't error in stream reader protocol callback when task is cancel...
Guido van Rossum
2024-01-04
1
-0/+3
*
gh-112800: Ignore PermissionError on SubprocessTransport.close() in asyncio (...
Allison Karlitskaya
2023-12-24
1
-1/+2
*
GH-113214: Fix SSLProto exception handling in SSL-over-SSL scenarios (#113334)
Martijn Pieters
2023-12-20
1
-7/+6
*
gh-101336: Add keep_alive keyword arg for asyncio create_server() (#112485)
beavailable
2023-12-13
2
-0/+8
*
gh-112622: Pass name to loop create_task method (#112623)
Jamie
2023-12-13
2
-6/+5
*
gh-112989: asyncio: Reduce overhead to connect sockets with SelectorEventLoop...
J. Nick Koston
2023-12-13
1
-9/+5
*
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
[next]