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 typos in docs, comments and test assert messages (#14872)
Min ho Kim
2019-07-21
1
-1/+1
*
bpo-35621: Support running subprocesses in asyncio when loop is executed in n...
Andrew Svetlov
2019-06-30
1
-29/+244
*
Replace deprecation warning with RuntimeError (GH-14397)
Andrew Svetlov
2019-06-27
1
-4/+2
*
Use threadpool for reading from file in sendfile fallback mode (#14076)
Andrew Svetlov
2019-06-15
1
-1/+1
*
bpo-37279: Fix asyncio sendfile support when extra data are sent in fallback...
Andrew Svetlov
2019-06-15
1
-2/+2
*
bpo-36607: Eliminate RuntimeError raised by asyncio.all_tasks() (GH-13971)
Andrew Svetlov
2019-06-11
1
-6/+32
*
bpo-34767: Do not always create a collections.deque() in asyncio.Lock() (GH-1...
Zackery Spytz
2019-06-05
1
-2/+7
*
bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [str...
Emmanuel Arias
2019-06-05
1
-0/+16
*
Revert "bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-1378...
Łukasz Langa
2019-06-04
1
-3/+1
*
Revert "bpo-35621: Support running subprocesses in asyncio when loop is execu...
Andrew Svetlov
2019-06-04
1
-212/+28
*
bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786)
Victor Stinner
2019-06-03
1
-1/+3
*
Fix typos in docs and docstrings (GH-13745)
Xtreak
2019-06-02
1
-1/+1
*
bpo-35621: Support running subprocesses in asyncio when loop is executed in n...
Andrew Svetlov
2019-06-02
1
-28/+212
*
bpo-36999: Add asyncio.Task.get_coro() (GH-13680)
Alex Grönholm
2019-05-30
1
-0/+3
*
bpo-35246: fix support for path-like args in asyncio subprocess (GH-13628)
依云
2019-05-29
1
-5/+0
*
bpo-29883: Asyncio proactor udp (GH-13440)
Andrew Svetlov
2019-05-28
2
-16/+199
*
bpo-36686: Improve the documentation of the std* params in loop.subprocess_ex...
sbstp
2019-05-27
1
-1/+18
*
bpo-36889: Merge asyncio streams (GH-13251)
Andrew Svetlov
2019-05-27
4
-155/+1156
*
bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') ...
Yury Selivanov
2019-05-27
4
-6/+215
*
bpo-37035: Don't log OSError (GH-13548)
Andrew Svetlov
2019-05-27
5
-11/+4
*
bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528)
Yury Selivanov
2019-05-27
12
-53/+130
*
bpo-37028: asyncio REPL; activated via 'python -m asyncio'. (GH-13472)
Yury Selivanov
2019-05-27
1
-0/+125
*
bpo-36932: use proper deprecation-removed directive (GH-13349)
Matthias Bussonnier
2019-05-21
1
-8/+8
*
bpo-35721: Close socket pair if Popen in _UnixSubprocessTransport fails (GH-1...
Niklas Fiekas
2019-05-20
1
-6/+12
*
bpo-35545: Fix asyncio discarding IPv6 scopes (GH-11271)
Erwan Le Pape
2019-05-17
1
-3/+3
*
bpo-36921: Deprecate @coroutine for sake of async def (GH-13346)
Andrew Svetlov
2019-05-16
3
-4/+14
*
bpo-35589: Prevent buffer copy in sock_sendall() (GH-11418)
Andrew Svetlov
2019-05-16
1
-7/+10
*
bpo-36801: Temporarily fix regression in writer.drain() (#13330)
Andrew Svetlov
2019-05-14
1
-3/+1
*
bpo-36916: asyncio: Swallow unhandled write() exception (GH-13313)
Andrew Svetlov
2019-05-14
1
-1/+10
*
bpo-36802: Drop awrite()/aclose(), support await write() and await close() in...
Andrew Svetlov
2019-05-09
1
-8/+27
*
bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transport (GH-13...
Andrew Svetlov
2019-05-07
2
-8/+22
*
bpo-35125: remove inner callback on outer cancellation in asyncio shield (GH-...
Romain Picard
2019-05-07
1
-2/+8
*
bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423)
Vincent Michel
2019-05-07
2
-7/+13
*
Forbid creating of stream objects outside of asyncio (#13101)
Andrew Svetlov
2019-05-07
2
-26/+73
*
bpo-33530: Implement Happy Eyeballs in asyncio, v2 (GH-7237)
twisteroid ambassador
2019-05-05
3
-37/+238
*
bpo-24638: Improve the error message in asyncio.ensure_future() (#12848)
Zackery Spytz
2019-05-03
1
-1/+2
*
bpo-36613: call remove_done_callback if exception (GH-12800)
gescheit
2019-05-03
1
-1/+2
*
bpo-34139: Remove unix datagram socket from FS before binding (GH-8323)
Quentin Dawans
2019-04-09
1
-0/+14
*
asyncio: PendingDeprecationWarning -> DeprecationWarning (GH-12494)
Inada Naoki
2019-03-22
1
-2/+2
*
bpo-34745: Fix asyncio sslproto memory issues (GH-12386)
Fantix King
2019-03-17
1
-0/+4
*
asyncio: use dict instead of OrderedDict (GH-11710)
Inada Naoki
2019-02-05
1
-1/+1
*
bpo-23846: Fix ProactorEventLoop._write_to_self() (GH-11566)
Victor Stinner
2019-01-15
1
-1/+7
*
bpo-11555: Enhance IocpProactor.close() log again (GH-11563)
Victor Stinner
2019-01-15
1
-3/+2
*
bpo-34323: Enhance IocpProactor.close() log (GH-11555)
Victor Stinner
2019-01-15
1
-3/+15
*
asyncio: __del__() keep reference to warnings.warn (GH-11491)
Victor Stinner
2019-01-10
7
-24/+16
*
IocpProactor: prevent modification if closed (GH-11494)
Victor Stinner
2019-01-10
1
-6/+22
*
bpo-35682: Fix _ProactorBasePipeTransport._force_close() (GH-11462)
Victor Stinner
2019-01-08
1
-1/+1
*
bpo-23057: Use 'raise' to emulate ctrl-c in proactor tests (#11274)
Vladimir Matveev
2019-01-05
1
-0/+5
*
bpo-23057: add loop self socket as wakeup fd for signals (#11135)
Vladimir Matveev
2018-12-18
2
-1/+14
*
bpo-35394: Add empty slots to abstract asyncio protocols (#10889)
Andrew Svetlov
2018-12-11
1
-0/+10
[next]