diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2014-07-08 21:58:25 (GMT) |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2014-07-08 21:58:25 (GMT) |
| commit | b44fc3266121695462488777fa28cb552567eaed (patch) | |
| tree | 3c46e9ddf3955b887ec4cb013507b85db43b7ff2 /Lib/asyncio/proactor_events.py | |
| parent | 5f40168b1c102a145110a4bfc2e42e370ae1f932 (diff) | |
| parent | bfff45d611f3435ed4b713124f65fba8e961ff03 (diff) | |
| download | cpython-b44fc3266121695462488777fa28cb552567eaed.zip cpython-b44fc3266121695462488777fa28cb552567eaed.tar.gz cpython-b44fc3266121695462488777fa28cb552567eaed.tar.bz2 | |
(Merge 3.4) asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint()
now waits until protocol.connection_made() has been called. Document also why
transport constructors use a waiter.
Diffstat (limited to 'Lib/asyncio/proactor_events.py')
| -rw-r--r-- | Lib/asyncio/proactor_events.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/asyncio/proactor_events.py b/Lib/asyncio/proactor_events.py index a80876f..fa24795 100644 --- a/Lib/asyncio/proactor_events.py +++ b/Lib/asyncio/proactor_events.py @@ -38,6 +38,7 @@ class _ProactorBasePipeTransport(transports._FlowControlMixin, self._server.attach(self) self._loop.call_soon(self._protocol.connection_made, self) if waiter is not None: + # wait until protocol.connection_made() has been called self._loop.call_soon(waiter._set_result_unless_cancelled, None) def _set_extra(self, sock): |
