summaryrefslogtreecommitdiff
path: root/asyncio/proactor_events.py
diff options
context:
space:
mode:
Diffstat (limited to 'asyncio/proactor_events.py')
-rw-r--r--asyncio/proactor_events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/asyncio/proactor_events.py b/asyncio/proactor_events.py
index ed17062..0f533a5 100644
--- a/asyncio/proactor_events.py
+++ b/asyncio/proactor_events.py
@@ -38,7 +38,7 @@ class _ProactorBasePipeTransport(transports._FlowControlMixin,
self._server._attach()
self._loop.call_soon(self._protocol.connection_made, self)
if waiter is not None:
- # wait until protocol.connection_made() has been called
+ # only wake up the waiter when connection_made() has been called
self._loop.call_soon(waiter._set_result_unless_cancelled, None)
def __repr__(self):