summaryrefslogtreecommitdiff
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482)Yury Selivanov2019-09-295-979/+192
* bpo-38019: correctly handle pause/resume reading of closed asyncio unix pipe ...Andrew Svetlov2019-09-291-0/+27
* bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330)Yury Selivanov2019-09-251-0/+4
* bpo-33694: Remove test_asyncio ProactorDatagramTransportTests (GH-16288)Victor Stinner2019-09-201-253/+0
* bpo-34037: test_asyncio uses shutdown_default_executor() (GH-16284)Victor Stinner2019-09-193-3/+13
* bpo-37199: Replace the early returns added in c2cda63. (GH-14535)Zackery Spytz2019-09-131-37/+34
* bpo-38148: Add slots to asyncio transports (GH-16077)Andrew Svetlov2019-09-131-4/+9
* bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033)Andrew Svetlov2019-09-123-89/+117
* bpo-38107: Replace direct future and task contructor calls with factories in ...Andrew Svetlov2019-09-1113-159/+156
* bpo-36373: Fix deprecation warnings (GH-15889)Andrew Svetlov2019-09-112-6/+4
* bpo-38066: Hide internal Stream methods (GH-15762)Andrew Svetlov2019-09-102-81/+105
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [loc...Emmanuel Arias2019-09-105-253/+372
* 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-032-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-281-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-151-23/+0