Merge comments between stdlib/{2,3}/os/__init__.pyi to make diffing easier (#1099)

This commit is contained in:
David Euresti
2017-03-25 20:50:21 -07:00
committed by Jelle Zijlstra
parent c0bbfbdec5
commit 2888b53924
2 changed files with 65 additions and 66 deletions

View File

@@ -389,8 +389,7 @@ def times() -> Tuple[float, float, float, float, float]: ...
def wait() -> Tuple[int, int]: ... # Unix only
def waitpid(pid: int, options: int) -> Tuple[int, int]: ...
def wait3(options: Union[int, None] = ...) -> Tuple[int, int, Any]: ... # Unix only
def wait4(pid: int, options: int) -> Tuple[int, int, Any]:
... # Unix only
def wait4(pid: int, options: int) -> Tuple[int, int, Any]: ... # Unix only
def WCOREDUMP(status: int) -> bool: ... # Unix only
def WIFCONTINUED(status: int) -> bool: ... # Unix only
def WIFSTOPPED(status: int) -> bool: ... # Unix only