aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/asyncio/unix_events.py
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2014-02-18 18:41:13 -0500
committerYury Selivanov <yselivanov@sprymix.com>2014-02-18 18:41:13 -0500
commitc098241342f9f0636e98b81d016564cc4153f158 (patch)
tree3de1f353e91e15070544ec32a65166b2e5e168c3 /Lib/asyncio/unix_events.py
parentff827f08ac9201f56b14cb19ccb9d511434c858b (diff)
downloadcpython-c098241342f9f0636e98b81d016564cc4153f158.tar.gz
cpython-c098241342f9f0636e98b81d016564cc4153f158.zip
asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixin
Diffstat (limited to 'Lib/asyncio/unix_events.py')
-rw-r--r--Lib/asyncio/unix_events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py
index 9a40c04d1ea..748452c5886 100644
--- a/Lib/asyncio/unix_events.py
+++ b/Lib/asyncio/unix_events.py
@@ -317,7 +317,7 @@ class _UnixReadPipeTransport(transports.ReadTransport):
self._loop = None
-class _UnixWritePipeTransport(selector_events._FlowControlMixin,
+class _UnixWritePipeTransport(transports._FlowControlMixin,
transports.WriteTransport):
def __init__(self, loop, pipe, protocol, waiter=None, extra=None):