diff options
Diffstat (limited to 'Lib/test/test_asyncio')
-rw-r--r-- | Lib/test/test_asyncio/test_streams.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_streams.py b/Lib/test/test_asyncio/test_streams.py index 1f375f0..6f657ad 100644 --- a/Lib/test/test_asyncio/test_streams.py +++ b/Lib/test/test_asyncio/test_streams.py @@ -653,7 +653,7 @@ os.close(fd) q.put(addr) clt, _ = sock.accept() clt.close() - + @asyncio.coroutine def client(host, port): reader, writer = yield from asyncio.open_connection(host, port, loop=self.loop) |