Searched refs:open_connection (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Doc/library/ |
D | asyncio-stream.rst | 25 reader, writer = await asyncio.open_connection( 51 .. coroutinefunction:: open_connection(host=None, port=None, *, \ 128 Similar to :func:`open_connection` but operates on Unix sockets. 187 directly; use :func:`open_connection` and :func:`start_server` 251 directly; use :func:`open_connection` and :func:`start_server` 345 TCP echo client using the :func:`asyncio.open_connection` function:: 350 reader, writer = await asyncio.open_connection( 425 reader, writer = await asyncio.open_connection( 428 reader, writer = await asyncio.open_connection( 469 :func:`open_connection` function:: [all …]
|
D | asyncio-api-index.rst | 138 * - ``await`` :func:`open_connection`
|
D | asyncio-eventloop.rst | 489 The :func:`open_connection` function is a high-level alternative 921 and :func:`asyncio.open_connection() <open_connection>`. 1690 using the high-level :func:`asyncio.open_connection` function
|
D | asyncio-protocol.rst | 817 example uses the high-level :func:`asyncio.open_connection` function. 986 created by the :func:`open_connection` function in a coroutine.
|
/third_party/mbedtls/tests/scripts/ |
D | tcp_client.pl | 35 sub open_connection { subroutine 96 my $connection = open_connection($host, $port);
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_streams.py | 59 conn_fut = asyncio.open_connection(*httpd.address) 86 conn_fut = asyncio.open_connection( 118 conn_fut = asyncio.open_connection(*httpd.address) 611 reader, writer = await asyncio.open_connection(*addr) 825 reader, writer = await asyncio.open_connection(host, port) 910 asyncio.open_connection(*httpd.address)) 927 asyncio.open_connection(*httpd.address)) 938 rd, wr = await asyncio.open_connection(*httpd.address) 958 rd, wr = await asyncio.open_connection(*httpd.address) 985 asyncio.open_connection(*httpd.address))
|
D | test_sslproto.py | 663 reader, writer = await asyncio.open_connection( 701 reader, writer = await asyncio.open_connection( 736 reader, writer = await asyncio.open_connection(
|
/third_party/python/Misc/NEWS.d/ |
D | 3.7.0rc1.rst | 181 Improve the documentation of :func:`asyncio.open_connection`,
|
D | 3.10.0a3.rst | 373 Remove loop parameter from ``asyncio.open_connection`` and
|
D | 3.8.0a1.rst | 6402 Improve the documentation of :func:`asyncio.open_connection`,
|
/third_party/python/Lib/asyncio/ |
D | streams.py | 25 async def open_connection(host=None, port=None, *, function
|
/third_party/python/Doc/whatsnew/ |
D | 3.5.rst | 194 reader, writer = await asyncio.open_connection(domain, 80)
|
D | 3.7.rst | 736 * The :func:`asyncio.open_connection`, :func:`asyncio.start_server` functions,
|