Home
last modified time | relevance | path

Searched refs:open_connection (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Doc/library/
Dasyncio-stream.rst25 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 …]
Dasyncio-api-index.rst138 * - ``await`` :func:`open_connection`
Dasyncio-eventloop.rst489 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
Dasyncio-protocol.rst817 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/
Dtcp_client.pl35 sub open_connection { subroutine
96 my $connection = open_connection($host, $port);
/third_party/python/Lib/test/test_asyncio/
Dtest_streams.py59 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))
Dtest_sslproto.py663 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/
D3.7.0rc1.rst181 Improve the documentation of :func:`asyncio.open_connection`,
D3.10.0a3.rst373 Remove loop parameter from ``asyncio.open_connection`` and
D3.8.0a1.rst6402 Improve the documentation of :func:`asyncio.open_connection`,
/third_party/python/Lib/asyncio/
Dstreams.py25 async def open_connection(host=None, port=None, *, function
/third_party/python/Doc/whatsnew/
D3.5.rst194 reader, writer = await asyncio.open_connection(domain, 80)
D3.7.rst736 * The :func:`asyncio.open_connection`, :func:`asyncio.start_server` functions,