Searched refs:create_unix_server (Results 1 – 15 of 15) sorted by relevance
/third_party/python/Lib/test/test_asyncio/ |
D | test_unix_events.py | 294 coro = self.loop.create_unix_server(lambda: None, path) 303 srv_coro = self.loop.create_unix_server(lambda: None, path) 319 coro = self.loop.create_unix_server(lambda: None, file.name) 325 coro = self.loop.create_unix_server(lambda: None, path='spam', 332 coro = self.loop.create_unix_server(lambda: None, path=None) 340 coro = self.loop.create_unix_server(lambda: None, path=None, 349 coro = self.loop.create_unix_server(lambda: None, path=None, 366 coro = self.loop.create_unix_server(lambda: None, path=None, 375 coro = self.loop.create_unix_server(lambda: None, path='spam', 398 coro = self.loop.create_unix_server(lambda: None, path="/test") [all …]
|
D | test_events.py | 864 f = self.loop.create_unix_server(factory, path, **kwargs) 902 f = self.loop.create_unix_server(lambda: proto, '/test', sock=sock)
|
/third_party/python/Doc/library/ |
D | asyncio-platforms.rst | 39 :meth:`loop.create_unix_server` are not supported.
|
D | asyncio-llapi-index.rst | 158 * - ``await`` :meth:`loop.create_unix_server`
|
D | asyncio-stream.rst | 158 See also the documentation of :meth:`loop.create_unix_server`.
|
D | asyncio-eventloop.rst | 699 .. coroutinemethod:: loop.create_unix_server(protocol_factory, path=None, \ 1408 :meth:`loop.create_unix_server`, :func:`start_server`,
|
D | asyncio-protocol.rst | 537 :meth:`loop.create_unix_server`, :meth:`loop.create_connection`,
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0b4.rst | 261 Fix create_unix_server to support Path-like objects (PEP 519).
|
D | 3.7.0b1.rst | 316 loop.create_server() and loop.create_unix_server().
|
D | 3.5.0a1.rst | 4080 asyncio.EventLoop.create_unix_server() now raises a ValueError if path and
|
/third_party/python/Lib/asyncio/ |
D | events.py | 389 async def create_unix_server( member in AbstractEventLoop
|
D | streams.py | 113 return await loop.create_unix_server(factory, path, **kwds)
|
D | unix_events.py | 273 async def create_unix_server( member in _UnixSelectorEventLoop
|
/third_party/python/Doc/whatsnew/ |
D | 3.7.rst | 708 :meth:`loop.create_unix_server() <asyncio.loop.create_unix_server>`,
|
/third_party/python/Misc/ |
D | HISTORY | 1990 - Issue #21155: asyncio.EventLoop.create_unix_server() now raises a ValueError 2305 New APIs: loop.create_unix_connection(), loop.create_unix_server(),
|