summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* [3.8] bpo-39794: Add --without-decimal-contextvar (GH-18702)Stefan Krah2020-02-291-0/+1
* [3.8] bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863) (#17894)Andrew Svetlov2020-01-071-2/+6
* Fix warnings in test_asyncio.test_base_events (GH-17577) (GH-17579)Miss Islington (bot)2019-12-171-3/+4
* bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (GH-17...Miss Islington (bot)2019-12-091-17/+24
* bpo-38529: Fix asyncio stream warning (GH-17474)Miss Islington (bot)2019-12-071-53/+0
* bpo-38841: Skip asyncio test_create_datagram_endpoint_existing_sock_unix (GH-...Miss Islington (bot)2019-11-201-1/+1
* bpo-38785: Prevent asyncio from crashing (GH-17144)Miss Islington (bot)2019-11-131-0/+39
* bpo-34679: ProactorEventLoop only uses set_wakeup_fd() in main thread (GH-16901)Miss Skeleton (bot)2019-10-231-0/+2
* bpo-35998: Fix test_asyncio.test_start_tls_server_1() (GH-16815)Miss Islington (bot)2019-10-161-14/+10
* bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482) (#16...Yury Selivanov2019-09-305-979/+192
* bpo-38019: correctly handle pause/resume reading of closed asyncio unix pipe ...Miss Islington (bot)2019-09-291-0/+27
* bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330) (G...Miss Islington (bot)2019-09-251-0/+4
* bpo-33694: Remove test_asyncio ProactorDatagramTransportTests (GH-16288)Miss Islington (bot)2019-09-201-253/+0
* bpo-37199: Replace the early returns added in c2cda63. (GH-14535)Miss Islington (bot)2019-09-131-37/+34
* [3.8] bpo-38148: Add slots to asyncio transports (GH-16077) (GH-16093)Andrew Svetlov2019-09-131-4/+9
* bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033)Miss Islington (bot)2019-09-123-89/+117
* bpo-38107: Replace direct future and task contructor calls with factories in ...Miss Islington (bot)2019-09-1113-159/+156
* [3.8] bpo-36373: Fix deprecation warnings (GH-15889) (GH-15901)Andrew Svetlov2019-09-112-6/+4
* bpo-38066: Hide internal Stream methods (GH-15762)Miss Islington (bot)2019-09-102-81/+105
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [lock...Miss Islington (bot)2019-09-105-253/+372
* bpo-34679: Restore instantiation Windows IOCP event loop from non-main thread...Miss Islington (bot)2019-08-261-0/+19
* Remove unused imports in tests (GH-14518) (GH-14520)Victor Stinner2019-07-017-12/+0
* bpo-37199: Fix test failures when IPv6 is unavailable or disabled (GH-14480)Miss Islington (bot)2019-06-301-1/+8
* bpo-35621: Support running subprocesses in asyncio when loop is executed in n...Miss Islington (bot)2019-06-303-26/+61
* Replace deprecation warning with RuntimeError (GH-14397)Miss Islington (bot)2019-06-271-0/+6
* Get rid of exception traceback printing in asyncio tests (GH-14343)Miss Islington (bot)2019-06-241-2/+2
* bpo-37323: Suppress DeprecationWarning raised by @asyncio.coroutine (GH-14293)Miss Islington (bot)2019-06-221-1/+3
* bpo-35031: also disable TLS 1.3 for test_start_tls_server_1 on macOS (GH-14188)Miss Islington (bot)2019-06-181-2/+4
* bpo-35031, test_asycio: disable TLS 1.3 in test_start_tls_server_1() (GH-14148)Miss Islington (bot)2019-06-171-0/+6
* bpo-37279: Fix asyncio sendfile support when extra data are sent in fallback...Miss Islington (bot)2019-06-151-1/+2
* bpo-35998: Avoid TimeoutError in test_asyncio: test_start_tls_server_1() (GH-...Miss Islington (bot)2019-06-141-18/+19
* bpo-37278: Fix test_asyncio ProactorLoopCtrlC (GH-14074)Miss Islington (bot)2019-06-141-7/+8
* Make asyncio stream sendfile fail on error (was hang) (GH-14025)Miss Islington (bot)2019-06-121-5/+8
* bpo-35545: Skip `test_asyncio.test_create_connection_ipv6_scope` on AIX (GH-1...Miss Islington (bot)2019-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