From: Yury Selivanov Date: Thu, 25 Sep 2014 03:30:03 +0000 (-0400) Subject: asyncio.test_events: Partially reverting f7643c893587 to stay in sync with tulip... X-Git-Tag: v3.5.0a1~857 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d1223a7adc883af09d166a269e535bdb7d02b2e3;p=python asyncio.test_events: Partially reverting f7643c893587 to stay in sync with tulip codebase --- diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py index 258fdcbcf0..7ac845a8a0 100644 --- a/Lib/test/test_asyncio/test_events.py +++ b/Lib/test/test_asyncio/test_events.py @@ -448,7 +448,7 @@ class EventLoopTestsMixin: listener = socket.socket() listener.setblocking(False) listener.bind(('127.0.0.1', 0)) - listener.listen() + listener.listen(1) client = socket.socket() client.connect(listener.getsockname())