Fix a missing type in stat.pyi (#536)

This commit is contained in:
Sebastian Meßmer
2016-09-12 20:13:42 +02:00
committed by Guido van Rossum
parent ecc400f125
commit f728e413b8

View File

@@ -14,7 +14,7 @@ def S_ISLNK(mode: int) -> bool: ...
def S_ISSOCK(mode: int) -> bool: ...
def S_IMODE(mode: int) -> int: ...
def S_IFMT(mode) -> int: ...
def S_IFMT(mode: int) -> int: ...
ST_MODE = 0
ST_INO = 0