summaryrefslogtreecommitdiff
path: root/Lib/asyncio/base_events.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-01-08 12:06:36 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-01-08 12:06:36 +0100
commit8d9c145f61d43fb9d43ad43c04744ffd32c93d8c (patch)
tree6dc0120d096bda5e5d9ef7f31d208b9296f7b6a1 /Lib/asyncio/base_events.py
parent84d64a9c027e1f772574af61192def2943d7c8c9 (diff)
downloadcpython-git-8d9c145f61d43fb9d43ad43c04744ffd32c93d8c.tar.gz
asyncio: _make_ssl_transport: make the waiter parameter optional
Diffstat (limited to 'Lib/asyncio/base_events.py')
-rw-r--r--Lib/asyncio/base_events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/base_events.py b/Lib/asyncio/base_events.py
index 59f31364ec..ac885a8e9a 100644
--- a/Lib/asyncio/base_events.py
+++ b/Lib/asyncio/base_events.py
@@ -201,7 +201,7 @@ class BaseEventLoop(events.AbstractEventLoop):
"""Create socket transport."""
raise NotImplementedError
- def _make_ssl_transport(self, rawsock, protocol, sslcontext, waiter, *,
+ def _make_ssl_transport(self, rawsock, protocol, sslcontext, waiter=None, *,
server_side=False, server_hostname=None,
extra=None, server=None):
"""Create SSL transport."""