Home
last modified time | relevance | path

Searched refs:connect_read_pipe (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Lib/asyncio/
Dbase_subprocess.py168 _, pipe = await loop.connect_read_pipe(
174 _, pipe = await loop.connect_read_pipe(
Devents.py472 async def connect_read_pipe(self, protocol_factory, pipe): member in AbstractEventLoop
Dbase_events.py1544 async def connect_read_pipe(self, protocol_factory, pipe): member in BaseEventLoop
/third_party/python/Lib/test/test_asyncio/
Dtest_subprocess.py275 connect_read_pipe = self.loop.connect_read_pipe
278 transport, protocol = await connect_read_pipe(*args, **kw)
283 self.loop.connect_read_pipe = connect_read_pipe_mock
Dtest_events.py1337 t, p = await self.loop.connect_read_pipe(
1375 read_transport, _ = await loop.connect_read_pipe(
1406 t, p = await self.loop.connect_read_pipe(lambda: proto,
1552 read_connect = self.loop.connect_read_pipe(lambda: read_proto,
2537 await loop.connect_read_pipe(f, mock.sentinel.pipe)
Dtest_streams.py730 self.loop.connect_read_pipe(lambda: protocol, pipe))
/third_party/python/Doc/library/
Dasyncio-platforms.rst53 * Pipes are not supported, so the :meth:`loop.connect_read_pipe`
Dasyncio-llapi-index.rst174 * - ``await`` :meth:`loop.connect_read_pipe`
308 :meth:`loop.connect_read_pipe`, etc:
Dasyncio-subprocess.rst126 :meth:`loop.connect_read_pipe`, :meth:`loop.connect_write_pipe`,
Dasyncio-protocol.rst110 the :meth:`loop.connect_read_pipe` event loop method and
539 :meth:`loop.connect_read_pipe`, and :meth:`loop.connect_write_pipe`
Dasyncio-eventloop.rst1000 .. coroutinemethod:: loop.connect_read_pipe(protocol_factory, pipe)
/third_party/python/Misc/NEWS.d/
D3.8.0b1.rst930 :func:`asyncio.connect_unix`, :func:`asyncio.connect_read_pipe` and