mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixin
This commit is contained in:
parent
ff827f08ac
commit
c098241342
4 changed files with 75 additions and 125 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue