Add stub for stat.filemode (#1837)

Fixes #1836.
This commit is contained in:
Yuri Khan
2018-01-24 05:27:01 +07:00
committed by Jelle Zijlstra
parent 754789b031
commit 732726400f

View File

@@ -16,6 +16,9 @@ def S_ISSOCK(mode: int) -> bool: ...
def S_IMODE(mode: int) -> int: ...
def S_IFMT(mode: int) -> int: ...
if sys.version_info >= (3, 3):
def filemode(mode: int) -> str: ...
ST_MODE = 0
ST_INO = 0
ST_DEV = 0