Home
last modified time | relevance | path

Searched refs:create_unix_server (Results 1 – 15 of 15) sorted by relevance

/third_party/python/Lib/test/test_asyncio/
Dtest_unix_events.py294 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 …]
Dtest_events.py864 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/
Dasyncio-platforms.rst39 :meth:`loop.create_unix_server` are not supported.
Dasyncio-llapi-index.rst158 * - ``await`` :meth:`loop.create_unix_server`
Dasyncio-stream.rst158 See also the documentation of :meth:`loop.create_unix_server`.
Dasyncio-eventloop.rst699 .. coroutinemethod:: loop.create_unix_server(protocol_factory, path=None, \
1408 :meth:`loop.create_unix_server`, :func:`start_server`,
Dasyncio-protocol.rst537 :meth:`loop.create_unix_server`, :meth:`loop.create_connection`,
/third_party/python/Misc/NEWS.d/
D3.6.0b4.rst261 Fix create_unix_server to support Path-like objects (PEP 519).
D3.7.0b1.rst316 loop.create_server() and loop.create_unix_server().
D3.5.0a1.rst4080 asyncio.EventLoop.create_unix_server() now raises a ValueError if path and
/third_party/python/Lib/asyncio/
Devents.py389 async def create_unix_server( member in AbstractEventLoop
Dstreams.py113 return await loop.create_unix_server(factory, path, **kwds)
Dunix_events.py273 async def create_unix_server( member in _UnixSelectorEventLoop
/third_party/python/Doc/whatsnew/
D3.7.rst708 :meth:`loop.create_unix_server() <asyncio.loop.create_unix_server>`,
/third_party/python/Misc/
DHISTORY1990 - Issue #21155: asyncio.EventLoop.create_unix_server() now raises a ValueError
2305 New APIs: loop.create_unix_connection(), loop.create_unix_server(),