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
/
test
/
test_asyncio
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-15999: Always pass bool instead of int to socket.setblocking(). (GH-15621)
Serhiy Storchaka
2019-09-01
1
-1/+1
*
bpo-34679: Restore instantiation Windows IOCP event loop from non-main thread...
Andrew Svetlov
2019-08-26
1
-0/+19
*
bpo-37685: Fixed __eq__, __lt__ etc implementations in some classes. (GH-14952)
Serhiy Storchaka
2019-08-08
1
-0/+23
*
Remove unused imports in tests (GH-14518)
Victor Stinner
2019-07-01
7
-12/+0
*
bpo-37199: Fix test failures when IPv6 is unavailable or disabled (#14480)
Zackery Spytz
2019-06-30
1
-1/+8
*
bpo-35621: Support running subprocesses in asyncio when loop is executed in n...
Andrew Svetlov
2019-06-30
3
-26/+61
*
Replace deprecation warning with RuntimeError (GH-14397)
Andrew Svetlov
2019-06-27
1
-0/+6
*
Get rid of exception traceback printing in asyncio tests (GH-14343)
Andrew Svetlov
2019-06-24
1
-2/+2
*
bpo-37323: Suppress DeprecationWarning raised by @asyncio.coroutine (GH-14293)
Xtreak
2019-06-22
1
-1/+3
*
bpo-35031: also disable TLS 1.3 for test_start_tls_server_1 on macOS (GH-14188)
Ned Deily
2019-06-18
1
-2/+4
*
bpo-35031, test_asycio: disable TLS 1.3 in test_start_tls_server_1() (GH-14148)
Victor Stinner
2019-06-17
1
-0/+6
*
bpo-37279: Fix asyncio sendfile support when extra data are sent in fallback...
Andrew Svetlov
2019-06-15
1
-1/+2
*
bpo-35998: Avoid TimeoutError in test_asyncio: test_start_tls_server_1() (GH-...
Andrew Svetlov
2019-06-14
1
-18/+19
*
bpo-37278: Fix test_asyncio ProactorLoopCtrlC (GH-14074)
Victor Stinner
2019-06-14
1
-7/+8
*
Make asyncio stream sendfile fail on error (was hang) (GH-14025)
Andrew Svetlov
2019-06-12
1
-5/+8
*
bpo-35545: Skip `test_asyncio.test_create_connection_ipv6_scope` on AIX (GH-1...
Michael Felt
2019-06-12
1
-0/+2
*
bpo-37142: Make asyncio stream tests more robust again (GH-13804)
Andrew Svetlov
2019-06-04
1
-9/+16
*
Make StreamServer.close() tests more robust (GH-13790)
Andrew Svetlov
2019-06-04
1
-11/+37
*
bpo-37148: Fix asyncio test that check for warning when running the test suit...
Pablo Galindo
2019-06-04
1
-0/+4
*
Revert "bpo-35621: Support running subprocesses in asyncio when loop is execu...
Andrew Svetlov
2019-06-04
2
-48/+26
*
bpo-37137: Fix test_asyncio: use TestCase.set_event_loop() (GH-13779)
Victor Stinner
2019-06-03
1
-13/+8
*
bpo-35621: Fix tests when SafeChildWatcher is expected instead of ThreadedChi...
Andrew Svetlov
2019-06-02
1
-0/+1
*
bpo-35621: Support running subprocesses in asyncio when loop is executed in n...
Andrew Svetlov
2019-06-02
2
-26/+48
*
bpo-36999: Add asyncio.Task.get_coro() (GH-13680)
Alex Grönholm
2019-05-30
1
-0/+10
*
bpo-37015: Ensure tasks created by _accept_connection2 due to AsyncMock are c...
Xtreak
2019-05-30
1
-6/+8
*
bpo-35246: fix support for path-like args in asyncio subprocess (GH-13628)
依云
2019-05-29
1
-0/+11
*
bpo-29883: Asyncio proactor udp (GH-13440)
Andrew Svetlov
2019-05-28
2
-9/+278
*
bpo-36686: Improve the documentation of the std* params in loop.subprocess_ex...
sbstp
2019-05-27
1
-0/+90
*
bpo-36889: Merge asyncio streams (GH-13251)
Andrew Svetlov
2019-05-27
7
-213/+872
*
bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') ...
Yury Selivanov
2019-05-27
2
-3/+3
*
bpo-37035: Don't log OSError (GH-13548)
Andrew Svetlov
2019-05-27
2
-7/+26
*
bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528)
Yury Selivanov
2019-05-27
2
-6/+4
*
Pass _asyncio_internal=True into stream tests on windows (#13442)
Andrew Svetlov
2019-05-20
1
-2/+4
*
bpo-35721: Close socket pair if Popen in _UnixSubprocessTransport fails (GH-1...
Niklas Fiekas
2019-05-20
1
-4/+13
*
bpo-35545: Fix asyncio discarding IPv6 scopes (GH-11271)
Erwan Le Pape
2019-05-17
1
-0/+22
*
bpo-36921: Deprecate @coroutine for sake of async def (GH-13346)
Andrew Svetlov
2019-05-16
6
-310/+290
*
bpo-35926: Add support for OpenSSL 1.1.1b on Windows (GH-11779)
Paul Monson
2019-05-15
1
-2/+2
*
bpo-36801: Temporarily fix regression in writer.drain() (#13330)
Andrew Svetlov
2019-05-14
1
-23/+0
*
bpo-36916: asyncio: Swallow unhandled write() exception (GH-13313)
Andrew Svetlov
2019-05-14
1
-0/+3
*
bpo-36884: Fix DeprecationWarning in test_asyncio StreamReader instantiation ...
Xtreak
2019-05-11
1
-1/+1
*
bpo-36802: Drop awrite()/aclose(), support await write() and await close() in...
Andrew Svetlov
2019-05-09
1
-12/+30
*
bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transport (GH-13...
Andrew Svetlov
2019-05-07
1
-0/+23
*
bpo-35125: remove inner callback on outer cancellation in asyncio shield (GH-...
Romain Picard
2019-05-07
1
-1/+10
*
bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423)
Vincent Michel
2019-05-07
2
-0/+18
*
Forbid creating of stream objects outside of asyncio (#13101)
Andrew Svetlov
2019-05-07
2
-50/+128
*
bpo-24638: Improve the error message in asyncio.ensure_future() (#12848)
Zackery Spytz
2019-05-03
1
-0/+9
*
bpo-36341: Fix tests calling bind() on AF_UNIX sockets (GH-12399)
xdegaye
2019-05-03
1
-1/+1
*
bpo-34139: Remove unix datagram socket from FS before binding (GH-8323)
Quentin Dawans
2019-04-09
1
-0/+14
*
bpo-35934: Add socket.create_server() utility function (GH-11784)
Giampaolo Rodola
2019-04-08
3
-26/+7
*
asyncio: PendingDeprecationWarning -> DeprecationWarning (GH-12494)
Inada Naoki
2019-03-22
1
-9/+9
[next]