mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixin
This commit is contained in:
parent
569efa2e4b
commit
3cb9914488
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