summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/unix_events.py
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-11-17 17:20:26 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-11-17 17:20:26 (GMT)
commit4990289bbf6d51130855fd0a54c3726f60ee9fdf (patch)
tree90650af56f9495acf7ea19045e2e61d5eadfb45c /Lib/asyncio/unix_events.py
parentcfcc2bdcb2e721050fc0ddbdafd2f6452b845a24 (diff)
parent5498f2b6bf6d2ff7a1575a7a07ca1175f8226853 (diff)
downloadcpython-4990289bbf6d51130855fd0a54c3726f60ee9fdf.zip
cpython-4990289bbf6d51130855fd0a54c3726f60ee9fdf.tar.gz
cpython-4990289bbf6d51130855fd0a54c3726f60ee9fdf.tar.bz2
Merge 3.5
Diffstat (limited to 'Lib/asyncio/unix_events.py')
-rw-r--r--Lib/asyncio/unix_events.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py
index f75e89f..7747ff4 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__]