Add stub for shutil.which (#592)

This commit is contained in:
jgarvin
2016-10-09 21:58:55 -05:00
committed by Guido van Rossum
parent cac07d6dea
commit 490b34649f

View File

@@ -44,3 +44,5 @@ def register_unpack_format(name: str, extensions: List[str], function: Any,
description: str = ...) -> None: ...
def unregister_unpack_format(name: str) -> None: ...
def get_unpack_formats() -> List[Tuple[str, List[str], str]]: ...
def which(cmd: str, mode: int = ..., path: str = ...): ...