summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* bpo-35031: also disable TLS 1.3 for test_start_tls_server_1 on macOS (GH-1418...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
* [3.7] bpo-37279: Fix asyncio sendfile support when extra data are sent in fa...Andrew Svetlov2019-06-151-1/+2
* bpo-35998: Avoid TimeoutError in test_asyncio: test_start_tls_server_1() (GH-...Victor Stinner2019-06-141-18/+19
* [3.7] bpo-37035: Don't log OSError (GH-13548) (#13594)Andrew Svetlov2019-05-272-7/+26
* bpo-35721: Close socket pair if Popen in _UnixSubprocessTransport fails (GH-1...Miss Islington (bot)2019-05-201-4/+13
* bpo-35545: Fix asyncio discarding IPv6 scopes (GH-11271)Miss Islington (bot)2019-05-171-0/+22
* bpo-35926: Add support for OpenSSL 1.1.1b on Windows (GH-11779)Steve Dower2019-05-161-2/+2
* Revert "bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transpor...Victor Stinner2019-05-141-23/+0
* bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transport (GH-13...Miss Islington (bot)2019-05-071-0/+23
* bpo-35125: remove inner callback on outer cancellation in asyncio shield (GH-...Miss Islington (bot)2019-05-071-1/+10
* bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423)Miss Islington (bot)2019-05-072-0/+18
* bpo-34745: Fix asyncio sslproto memory issues (GH-12386)Miss Islington (bot)2019-03-171-0/+72
* bpo-35602: Make sure the transport is always closed in SelectorEventLoopUnixS...Miss Islington (bot)2018-12-291-5/+5
* bpo-35601: Alleviate race condition when waiting for SIGALRM in test_asyncio ...Miss Islington (bot)2018-12-291-1/+3
* bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11...Miss Islington (bot)2018-12-172-0/+16
* bpo-35513: Replace time.time() with time.monotonic() in tests (GH-11182)Miss Islington (bot)2018-12-171-2/+2
* [3.7] bpo-35380: Enable TCP_NODELAY for proactor event loop (GH-10867) (GH-10...Miss Islington (bot)2018-12-032-27/+27
* [3.7] bpo-35352: test_asyncio uses the certificate set from the test director...Victor Stinner2018-11-305-190/+2
* bpo-35031: Fix test_start_tls_server_1 on FreeBSD buildbots (GH-10011)Miss Islington (bot)2018-11-131-0/+7
* bpo-34769: Thread safety for _asyncgen_finalizer_hook(). (GH-9716)Miss Islington (bot)2018-10-091-0/+68
* [3.7] bpo-34872: Fix self-cancellation in C implementation of asyncio.Task (G...Elvis Pranskevichus2018-10-031-0/+36
* [3.7] bpo-34490: Fix test_asyncio for AIX - do not call transport.get_extra_i...Andrew Svetlov2018-09-141-4/+6
* bpo-34542: Update test certs and keys (GH-8997) (GH-9007)Miss Islington (bot)2018-09-061-3/+3
* bpo-33833: Fix ProactorSocketTransport AssertionError (GH-7893)Miss Islington (bot)2018-07-301-0/+13
* bpo-27500: Fix static version of getaddrinfo to resolve IPv6 (GH-7993)Miss Islington (bot)2018-06-291-2/+22
* bpo-33694: Fix typo in helper function name (GH-7522)Miss Islington (bot)2018-06-081-6/+6
* bpo-33792: Add selector and proactor windows policies (GH-7487)Miss Islington (bot)2018-06-081-0/+31
* bpo-33694: Fix race condition in asyncio proactor (GH-7498) (GH-7499)Miss Islington (bot)2018-06-072-6/+11
* [3.7] bpo-33789: Backport test_asyncio fixes from master (GH-7478)Victor Stinner2018-06-073-4/+19
* bpo-33734: asyncio/ssl: a bunch of bugfixes (GH-7321) (GH-7396)Miss Islington (bot)2018-06-042-31/+214
* Revert "bpo-22087: Fix Policy.get_event_loop() to detect fork (GH-7208)" (GH-...Yury Selivanov2018-05-301-32/+0
* bpo-32684: Fix nits in tests (GH-7225) (#7231)Miss Islington (bot)2018-05-301-3/+3
* bpo-32751: Wait for task cancellation in asyncio.wait_for() (GH-7216)Miss Islington (bot)2018-05-292-0/+69
* bpo-32684: Fix gather to propagate cancel of itself with return_exceptions (G...Miss Islington (bot)2018-05-291-1/+28
* bpo-22087: Fix Policy.get_event_loop() to detect fork (GH-7208)Miss Islington (bot)2018-05-291-0/+32
* Attempt to fix test_stdin_broken_pipe on Travis (GH-7210) (#7211)Miss Islington (bot)2018-05-291-0/+1
* bpo-33353: test_asyncio use set_write_buffer_limits() (GH-7200)Miss Islington (bot)2018-05-291-17/+29
* bpo-33654: Support protocol type switching in SSLTransport.set_protocol() (GH...Miss Islington (bot)2018-05-291-11/+36
* bpo-32410: Avoid blocking on file IO in sendfile fallback code (GH-7172) (#7182)Miss Islington (bot)2018-05-292-0/+14
* bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174)Miss Islington (bot)2018-05-291-2/+27
* bpo-33469: RuntimeError after closing loop that used run_in_executor (GH-7171)Miss Islington (bot)2018-05-281-0/+18
* bpo-33672: Fix Task.__repr__ crash with Cython's bogus coroutines (GH-7161) (...Miss Islington (bot)2018-05-281-0/+10
* bpo-32458: Further tune start_tls tests (GH-7166)Miss Islington (bot)2018-05-281-4/+6
* bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130)Miss Islington (bot)2018-05-285-35/+257
* bpo-31647: Fix write_eof() after close() for SelectorSocketTransport (GH-7149...Miss Islington (bot)2018-05-281-0/+6
* [3.7] bpo-33353: Fix test_asyncio on FreeBSD (GH-7087)Victor Stinner2018-05-241-5/+11
* [3.7] bpo-33618: Enable TLS 1.3 in tests (GH-7079) (GH-7082)Miss Islington (bot)2018-05-232-2/+2
* Use IPv4 only to avoid IP address collision (GH-7030)Miss Islington (bot)2018-05-211-6/+4
* Fix asyncio flaky tests (GH-7023) (#7024)Miss Islington (bot)2018-05-211-2/+3