diff options
Diffstat (limited to 'Lib/asyncio/events.py')
-rw-r--r-- | Lib/asyncio/events.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/asyncio/events.py b/Lib/asyncio/events.py index f2f2e28..e59d3d2 100644 --- a/Lib/asyncio/events.py +++ b/Lib/asyncio/events.py @@ -362,12 +362,12 @@ class AbstractEventLoop: """ raise NotImplementedError - def create_unix_connection(self, protocol_factory, path, *, + def create_unix_connection(self, protocol_factory, path=None, *, ssl=None, sock=None, server_hostname=None): raise NotImplementedError - def create_unix_server(self, protocol_factory, path, *, + def create_unix_server(self, protocol_factory, path=None, *, sock=None, backlog=100, ssl=None): """A coroutine which creates a UNIX Domain Socket server. |