Fix type stubs in subprocess.pyi (#1253)

This commit is contained in:
Sebastian Meßmer
2017-05-09 01:24:02 +02:00
committed by Matthias Kramm
parent 7dd2f80194
commit 9311e980f4

View File

@@ -19,7 +19,7 @@ class SubprocessStreamProtocol(streams.FlowControlMixin,
def __init__(self, limit: int, loop: events.AbstractEventLoop) -> None: ...
def connection_made(self, transport: transports.BaseTransport) -> None: ...
def pipe_data_received(self, fd: int, data: AnyStr) -> None: ...
def pipe_connection_lost(self, fd: int, exc: Exception): ...
def pipe_connection_lost(self, fd: int, exc: Exception) -> None: ...
def process_exited(self) -> None: ...