diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2014-02-18 18:41:13 -0500 |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2014-02-18 18:41:13 -0500 |
commit | 3cb9914488d2d5c95a1b688a68302f5fa2e914ad (patch) | |
tree | 1f3e25dfe844b818b51b8cd48ff28146bd867804 /Lib/asyncio/unix_events.py | |
parent | 569efa2e4bf985f27a9f85393e29d3ad8ac73344 (diff) | |
download | cpython-git-3cb9914488d2d5c95a1b688a68302f5fa2e914ad.tar.gz |
asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixin
Diffstat (limited to 'Lib/asyncio/unix_events.py')
-rw-r--r-- | Lib/asyncio/unix_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py index 9a40c04d1e..748452c588 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): |