Files
typeshed/stdlib/2/commands.pyi
Jelle Zijlstra b10125cd7d commands: add python 2 pyi file (#698)
Partially fixes issue #531
2016-11-23 12:14:03 +00:00

6 lines
153 B
Python

from typing import Tuple
def getstatus(file: str) -> str: ...
def getoutput(cmd: str) -> str: ...
def getstatusoutput(cmd: str) -> Tuple[int, str]: ...