diff options
author | Yury Selivanov <yury@magic.io> | 2016-09-15 14:14:48 -0400 |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2016-09-15 14:14:48 -0400 |
commit | d070154fb5f35c33fd03ce941ec19ca15de32263 (patch) | |
tree | 46562810cc8148567bbef64c67454d02cd3c9187 /Lib/asyncio/base_events.py | |
parent | e9da808b7ee5ad4a383275bb1c29fa80ba33f068 (diff) | |
parent | a1b0e7db7315ff0d8d0f8edc056f387f198cf5a1 (diff) | |
download | cpython-git-d070154fb5f35c33fd03ce941ec19ca15de32263.tar.gz |
Merge 3.5 (issue #27906)
Diffstat (limited to 'Lib/asyncio/base_events.py')
-rw-r--r-- | Lib/asyncio/base_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/base_events.py b/Lib/asyncio/base_events.py index 154fd95513..53f5f02f7d 100644 --- a/Lib/asyncio/base_events.py +++ b/Lib/asyncio/base_events.py @@ -1035,7 +1035,7 @@ class BaseEventLoop(events.AbstractEventLoop): for sock in sockets: sock.listen(backlog) sock.setblocking(False) - self._start_serving(protocol_factory, sock, ssl, server) + self._start_serving(protocol_factory, sock, ssl, server, backlog) if self._debug: logger.info("%r is serving", server) return server |