asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixin

This commit is contained in:
Yury Selivanov 2014-02-18 18:41:13 -05:00
parent 569efa2e4b
commit 3cb9914488
4 changed files with 75 additions and 125 deletions

View file

@ -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):