diff options
author | Guido van Rossum <guido@python.org> | 2015-10-19 19:00:04 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2015-10-19 19:00:04 (GMT) |
commit | 06d48dbea8fcf3601c9416ccdd398895b97e59c2 (patch) | |
tree | 23a78c24e885c6b43770441f53269dfea876409a | |
parent | c44ecdf687897a20f11d0c5212b51e8d31f6100a (diff) | |
download | cpython-06d48dbea8fcf3601c9416ccdd398895b97e59c2.zip cpython-06d48dbea8fcf3601c9416ccdd398895b97e59c2.tar.gz cpython-06d48dbea8fcf3601c9416ccdd398895b97e59c2.tar.bz2 |
Fix whitespace.
-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) |