commands: add python 2 pyi file (#698)

Partially fixes issue #531
This commit is contained in:
Jelle Zijlstra
2016-11-23 04:14:03 -08:00
committed by Jukka Lehtosalo
parent e13f2c739d
commit b10125cd7d

5
stdlib/2/commands.pyi Normal file
View File

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