Add DOOR, PORT, and WHT type signatures for stat module (#5955)

Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
This commit is contained in:
Alex Nelson
2021-08-24 15:22:24 -04:00
committed by GitHub
parent 9b366daaec
commit d34d047002

View File

@@ -9,6 +9,9 @@ def S_ISLNK(mode: int) -> bool: ...
def S_ISSOCK(mode: int) -> bool: ...
def S_IMODE(mode: int) -> int: ...
def S_IFMT(mode: int) -> int: ...
def S_ISDOOR(mode: int) -> int: ...
def S_ISPORT(mode: int) -> int: ...
def S_ISWHT(mode: int) -> int: ...
def filemode(mode: int) -> str: ...
ST_MODE: int
@@ -29,6 +32,9 @@ S_IFBLK: int
S_IFDIR: int
S_IFCHR: int
S_IFIFO: int
S_IFDOOR: int
S_IFPORT: int
S_IFWHT: int
S_ISUID: int
S_ISGID: int
S_ISVTX: int