diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2014-07-07 10:46:09 (GMT) |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-07-07 10:46:09 (GMT) |
| commit | 3bc13cc8b0b85f989b8da9c5718fc5319ad06248 (patch) | |
| tree | 52fc5995a7cc1ccafce61ef403b7dea1a4ff342d /Lib/asyncio/proactor_events.py | |
| parent | 667abc7d42e87b87338981276d0eac9895d4abf4 (diff) | |
| parent | e50dafcd636ba32db890600164698bb070d40d97 (diff) | |
| download | cpython-3bc13cc8b0b85f989b8da9c5718fc5319ad06248.zip cpython-3bc13cc8b0b85f989b8da9c5718fc5319ad06248.tar.gz cpython-3bc13cc8b0b85f989b8da9c5718fc5319ad06248.tar.bz2 | |
Merge heads
Diffstat (limited to 'Lib/asyncio/proactor_events.py')
| -rw-r--r-- | Lib/asyncio/proactor_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/proactor_events.py b/Lib/asyncio/proactor_events.py index b76f69e..a80876f 100644 --- a/Lib/asyncio/proactor_events.py +++ b/Lib/asyncio/proactor_events.py @@ -38,7 +38,7 @@ class _ProactorBasePipeTransport(transports._FlowControlMixin, self._server.attach(self) self._loop.call_soon(self._protocol.connection_made, self) if waiter is not None: - self._loop.call_soon(waiter.set_result, None) + self._loop.call_soon(waiter._set_result_unless_cancelled, None) def _set_extra(self, sock): self._extra['pipe'] = sock |
