summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_windows_events.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@dropbox.com>2013-11-01 21:20:55 (GMT)
committerGuido van Rossum <guido@dropbox.com>2013-11-01 21:20:55 (GMT)
commita8d630a6e6190a4873a16a6a8c02f561e1e1c7fe (patch)
tree9a083c9b45a312245b7d785666cf9e1edb876706 /Lib/test/test_asyncio/test_windows_events.py
parent3a703921a61d45718fdc01e29e2ae8e907d9f0a0 (diff)
downloadcpython-a8d630a6e6190a4873a16a6a8c02f561e1e1c7fe.zip
cpython-a8d630a6e6190a4873a16a6a8c02f561e1e1c7fe.tar.gz
cpython-a8d630a6e6190a4873a16a6a8c02f561e1e1c7fe.tar.bz2
asyncio: Various style nits.
Diffstat (limited to 'Lib/test/test_asyncio/test_windows_events.py')
-rw-r--r--Lib/test/test_asyncio/test_windows_events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_windows_events.py b/Lib/test/test_asyncio/test_windows_events.py
index 553ea34..f5147de 100644
--- a/Lib/test/test_asyncio/test_windows_events.py
+++ b/Lib/test/test_asyncio/test_windows_events.py
@@ -77,7 +77,7 @@ class ProactorTests(unittest.TestCase):
stream_reader = streams.StreamReader(loop=self.loop)
protocol = streams.StreamReaderProtocol(stream_reader)
trans, proto = yield from self.loop.create_pipe_connection(
- lambda:protocol, ADDRESS)
+ lambda: protocol, ADDRESS)
self.assertIsInstance(trans, transports.Transport)
self.assertEqual(protocol, proto)
clients.append((stream_reader, trans))