diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-11-17 12:19:41 -0500 |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-11-17 12:19:41 -0500 |
commit | 5d7e3b6cd208dffdfe8530664081b62e0c7e3092 (patch) | |
tree | b6c746197f3d33280a3c99261e0f7288611f97cf /Lib/asyncio/unix_events.py | |
parent | 0013ccedd1e9dd829a5966afc71c2363604b011d (diff) | |
download | cpython-git-5d7e3b6cd208dffdfe8530664081b62e0c7e3092.tar.gz |
asyncio: Cleanup Future API
See https://github.com/python/asyncio/pull/292 for details.
Diffstat (limited to 'Lib/asyncio/unix_events.py')
-rw-r--r-- | Lib/asyncio/unix_events.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py index f75e89f317..7747ff41bb 100644 --- a/Lib/asyncio/unix_events.py +++ b/Lib/asyncio/unix_events.py @@ -319,7 +319,8 @@ class _UnixReadPipeTransport(transports.ReadTransport): self._fileno, self._read_ready) if waiter is not None: # only wake up the waiter when connection_made() has been called - self._loop.call_soon(waiter._set_result_unless_cancelled, None) + self._loop.call_soon(futures._set_result_unless_cancelled, + waiter, None) def __repr__(self): info = [self.__class__.__name__] @@ -442,7 +443,8 @@ class _UnixWritePipeTransport(transports._FlowControlMixin, if waiter is not None: # only wake up the waiter when connection_made() has been called - self._loop.call_soon(waiter._set_result_unless_cancelled, None) + self._loop.call_soon(futures._set_result_unless_cancelled, + waiter, None) def __repr__(self): info = [self.__class__.__name__] |