DEBSOURCES
Skip Quicknav
sources / mypy / 0.470-complete-1 / typeshed / stdlib / 2 / commands.pyi
12345
from typing import Tuple def getstatus(file: str) -> str: ... def getoutput(cmd: str) -> str: ... def getstatusoutput(cmd: str) -> Tuple[int, str]: ...