diff options
author | Guido van Rossum <guido@python.org> | 2015-10-19 19:00:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2015-10-19 19:00:25 (GMT) |
commit | 25c578d0a6b5ad9f59fbc859cd747e8bbaffc063 (patch) | |
tree | 065dbedc51b8fc4f0ef0dcd3cd68380468babd62 /Lib/test/test_asyncio | |
parent | 030f489df7adc389eb0c020e8a7aeda2e727c52f (diff) | |
parent | 06d48dbea8fcf3601c9416ccdd398895b97e59c2 (diff) | |
download | cpython-25c578d0a6b5ad9f59fbc859cd747e8bbaffc063.zip cpython-25c578d0a6b5ad9f59fbc859cd747e8bbaffc063.tar.gz cpython-25c578d0a6b5ad9f59fbc859cd747e8bbaffc063.tar.bz2 |
Fix whitespace.
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) |