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-122858: Deprecate `asyncio.iscoroutinefunction` (#122875)
Wulian
2024-08-11
3
-2/+11
*
gh-121913: Use str(exc) instead of exc.strerror in `asyncio.base_events` (#12...
AN Long
2024-07-25
1
-3/+2
*
gh-121957: Emit audit events for `python -i` and `python -m asyncio` (GH-121958)
Łukasz Langa
2024-07-22
1
-0/+5
*
gh-121790: Fix interactive console initialization (#121793)
Milan Oberkirch
2024-07-15
1
-18/+9
*
fix outdated comments in asyncio (#121783)
Kumar Aditya
2024-07-15
2
-4/+3
*
gh-121711: Set `-m asyncio` return_code to 1 for ENOTTY (#121714)
Milan Oberkirch
2024-07-13
1
-1/+2
*
gh-119909: Fix ``NameError`` in ``asyncio`` REPL (#121341)
Kirill Podoprigora
2024-07-06
1
-1/+1
*
gh-87744: fix waitpid race while calling send_signal in asyncio (#121126)
Kumar Aditya
2024-07-01
1
-9/+26
*
gh-120804: remove `is_active` method from internal child watchers implementat...
Kumar Aditya
2024-06-28
1
-6/+0
*
GH-120804: Remove `PidfdChildWatcher`, `ThreadedChildWatcher` and `AbstractCh...
Kumar Aditya
2024-06-23
1
-176/+23
*
GH-120804: Remove `get_child_watcher` and `set_child_watcher` from asyncio (#...
Kumar Aditya
2024-06-23
2
-113/+5
*
GH-107803: double linked list implementation for asyncio tasks (GH-107804)
Kumar Aditya
2024-06-22
1
-2/+3
*
GH-120804: Remove SafeChildWatcher, FastChildWatcher and MultiLoopChildWatche...
Kumar Aditya
2024-06-21
1
-322/+3
*
gh-113892: Add a extra check to `ProactorEventLoop.sock_connect` to ensure th...
Kirill Podoprigora
2024-06-01
1
-0/+2
*
gh-118894: Make asyncio REPL use pyrepl (GH-119433)
Łukasz Langa
2024-05-31
1
-18/+71
*
gh-119121: Fix and test `async.staggered.staggered_race` (#119173)
Nikita Sobolev
2024-05-20
1
-2/+1
*
gh-118817: Fix `asyncio REPL` on Windows (#118819)
Kirill Podoprigora
2024-05-09
1
-3/+4
*
gh-117722: Fix Stream.readuntil with non-bytes buffer objects (#117723)
Bruce Merry
2024-04-11
1
-5/+5
*
gh-116720: Fix corner cases of taskgroups (#117407)
Guido van Rossum
2024-04-09
2
-6/+15
*
gh-81322: support multiple separators in StreamReader.readuntil (#16429)
Bruce Merry
2024-04-08
1
-21/+44
*
gh-96471: Correct documentation for asyncio queue shutdown (#117621)
Laurie O
2024-04-08
1
-2/+4
*
gh-96471: Add asyncio queue shutdown (#104228)
Laurie O
2024-04-06
1
-3/+65
*
gh-117459: Keep the traceback in _convert_future_exc (#117460)
rsp4jack
2024-04-04
1
-4/+2
*
gh-77714: Provide an async iterator version of as_completed (GH-22491)
Justin Turner Arthur
2024-04-01
1
-44/+108
*
gh-91227: Ignore ERROR_PORT_UNREACHABLE in proactor recvfrom() (#32011)
Erik Soma
2024-03-23
1
-12/+17
*
gh-116773: Ensure overlapped objects on Windows are not deallocated too early...
jkriegshauser
2024-03-20
1
-7/+7
*
gh-113538: Add asycio.Server.{close,abort}_clients (redo) (#116784)
Pierre Ossman (ThinLinc team)
2024-03-18
4
-12/+31
*
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
[next]