commit | c098241342f9f0636e98b81d016564cc4153f158 | [log] [tgz] |
---|---|---|
author | Yury Selivanov <yselivanov@sprymix.com> | Tue Feb 18 18:41:13 2014 -0500 |
committer | Yury Selivanov <yselivanov@sprymix.com> | Tue Feb 18 18:41:13 2014 -0500 |
tree | 3de1f353e91e15070544ec32a65166b2e5e168c3 | |
parent | ff827f08ac9201f56b14cb19ccb9d511434c858b [diff] [blame] |
asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixin
diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py index 9a40c04..748452c 100644 --- a/Lib/asyncio/unix_events.py +++ b/Lib/asyncio/unix_events.py
@@ -317,7 +317,7 @@ self._loop = None -class _UnixWritePipeTransport(selector_events._FlowControlMixin, +class _UnixWritePipeTransport(transports._FlowControlMixin, transports.WriteTransport): def __init__(self, loop, pipe, protocol, waiter=None, extra=None):