summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* bpo-15999: Always pass bool instead of int to socket.setblocking(). (GH-15621)Serhiy Storchaka2019-09-011-1/+1
* bpo-34679: Restore instantiation Windows IOCP event loop from non-main thread...Andrew Svetlov2019-08-261-0/+19
* bpo-37685: Fixed __eq__, __lt__ etc implementations in some classes. (GH-14952)Serhiy Storchaka2019-08-081-0/+23
* Remove unused imports in tests (GH-14518)Victor Stinner2019-07-017-12/+0
* bpo-37199: Fix test failures when IPv6 is unavailable or disabled (#14480)Zackery Spytz2019-06-301-1/+8
* bpo-35621: Support running subprocesses in asyncio when loop is executed in n...Andrew Svetlov2019-06-303-26/+61
* Replace deprecation warning with RuntimeError (GH-14397)Andrew Svetlov2019-06-271-0/+6
* Get rid of exception traceback printing in asyncio tests (GH-14343)Andrew Svetlov2019-06-241-2/+2
* bpo-37323: Suppress DeprecationWarning raised by @asyncio.coroutine (GH-14293)Xtreak2019-06-221-1/+3
* bpo-35031: also disable TLS 1.3 for test_start_tls_server_1 on macOS (GH-14188)Ned Deily2019-06-181-2/+4
* bpo-35031, test_asycio: disable TLS 1.3 in test_start_tls_server_1() (GH-14148)Victor Stinner2019-06-171-0/+6
* bpo-37279: Fix asyncio sendfile support when extra data are sent in fallback...Andrew Svetlov2019-06-151-1/+2
* bpo-35998: Avoid TimeoutError in test_asyncio: test_start_tls_server_1() (GH-...Andrew Svetlov2019-06-141-18/+19
* bpo-37278: Fix test_asyncio ProactorLoopCtrlC (GH-14074)Victor Stinner2019-06-141-7/+8
* Make asyncio stream sendfile fail on error (was hang) (GH-14025)Andrew Svetlov2019-06-121-5/+8
* bpo-35545: Skip `test_asyncio.test_create_connection_ipv6_scope` on AIX (GH-1...Michael Felt2019-06-121-0/+2
* bpo-37142: Make asyncio stream tests more robust again (GH-13804)Andrew Svetlov2019-06-041-9/+16
* Make StreamServer.close() tests more robust (GH-13790)Andrew Svetlov2019-06-041-11/+37
* bpo-37148: Fix asyncio test that check for warning when running the test suit...Pablo Galindo2019-06-041-0/+4
* Revert "bpo-35621: Support running subprocesses in asyncio when loop is execu...Andrew Svetlov2019-06-042-48/+26
* bpo-37137: Fix test_asyncio: use TestCase.set_event_loop() (GH-13779)Victor Stinner2019-06-031-13/+8
* bpo-35621: Fix tests when SafeChildWatcher is expected instead of ThreadedChi...Andrew Svetlov2019-06-021-0/+1
* bpo-35621: Support running subprocesses in asyncio when loop is executed in n...Andrew Svetlov2019-06-022-26/+48
* bpo-36999: Add asyncio.Task.get_coro() (GH-13680)Alex Grönholm2019-05-301-0/+10
* bpo-37015: Ensure tasks created by _accept_connection2 due to AsyncMock are c...Xtreak2019-05-301-6/+8
* bpo-35246: fix support for path-like args in asyncio subprocess (GH-13628)依云2019-05-291-0/+11
* bpo-29883: Asyncio proactor udp (GH-13440)Andrew Svetlov2019-05-282-9/+278
* bpo-36686: Improve the documentation of the std* params in loop.subprocess_ex...sbstp2019-05-271-0/+90
* bpo-36889: Merge asyncio streams (GH-13251)Andrew Svetlov2019-05-277-213/+872
* bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') ...Yury Selivanov2019-05-272-3/+3
* bpo-37035: Don't log OSError (GH-13548)Andrew Svetlov2019-05-272-7/+26
* bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528)Yury Selivanov2019-05-272-6/+4
* Pass _asyncio_internal=True into stream tests on windows (#13442)Andrew Svetlov2019-05-201-2/+4
* bpo-35721: Close socket pair if Popen in _UnixSubprocessTransport fails (GH-1...Niklas Fiekas2019-05-201-4/+13
* bpo-35545: Fix asyncio discarding IPv6 scopes (GH-11271)Erwan Le Pape2019-05-171-0/+22
* bpo-36921: Deprecate @coroutine for sake of async def (GH-13346)Andrew Svetlov2019-05-166-310/+290
* bpo-35926: Add support for OpenSSL 1.1.1b on Windows (GH-11779)Paul Monson2019-05-151-2/+2
* bpo-36801: Temporarily fix regression in writer.drain() (#13330)Andrew Svetlov2019-05-141-23/+0
* bpo-36916: asyncio: Swallow unhandled write() exception (GH-13313)Andrew Svetlov2019-05-141-0/+3
* bpo-36884: Fix DeprecationWarning in test_asyncio StreamReader instantiation ...Xtreak2019-05-111-1/+1
* bpo-36802: Drop awrite()/aclose(), support await write() and await close() in...Andrew Svetlov2019-05-091-12/+30
* bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transport (GH-13...Andrew Svetlov2019-05-071-0/+23
* bpo-35125: remove inner callback on outer cancellation in asyncio shield (GH-...Romain Picard2019-05-071-1/+10
* bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423)Vincent Michel2019-05-072-0/+18
* Forbid creating of stream objects outside of asyncio (#13101)Andrew Svetlov2019-05-072-50/+128
* bpo-24638: Improve the error message in asyncio.ensure_future() (#12848)Zackery Spytz2019-05-031-0/+9
* bpo-36341: Fix tests calling bind() on AF_UNIX sockets (GH-12399)xdegaye2019-05-031-1/+1
* bpo-34139: Remove unix datagram socket from FS before binding (GH-8323)Quentin Dawans2019-04-091-0/+14
* bpo-35934: Add socket.create_server() utility function (GH-11784)Giampaolo Rodola2019-04-083-26/+7
* asyncio: PendingDeprecationWarning -> DeprecationWarning (GH-12494)Inada Naoki2019-03-221-9/+9