File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ S_IFDIR: Final = 0o040000
28
28
29
29
# These are 0 on systems that don't support the specific kind of file.
30
30
# Example: Linux doesn't support door files, so S_IFDOOR is 0 on linux.
31
- S_IFDOOR : int
32
- S_IFPORT : int
33
- S_IFWHT : int
31
+ S_IFDOOR : Final [ int ]
32
+ S_IFPORT : Final [ int ]
33
+ S_IFWHT : Final [ int ]
34
34
35
35
S_ISUID : Final = 0o4000
36
36
S_ISGID : Final = 0o2000
@@ -79,9 +79,9 @@ def S_ISWHT(mode: int, /) -> bool: ...
79
79
def filemode (mode : int , / ) -> str : ...
80
80
81
81
if sys .platform == "win32" :
82
- IO_REPARSE_TAG_SYMLINK : int
83
- IO_REPARSE_TAG_MOUNT_POINT : int
84
- IO_REPARSE_TAG_APPEXECLINK : int
82
+ IO_REPARSE_TAG_SYMLINK : Final = 0xA000000C
83
+ IO_REPARSE_TAG_MOUNT_POINT : Final = 0xA0000003
84
+ IO_REPARSE_TAG_APPEXECLINK : Final = 0x8000001B
85
85
86
86
if sys .platform == "win32" :
87
87
FILE_ATTRIBUTE_ARCHIVE : Final = 32
You can’t perform that action at this time.
0 commit comments