mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Fix names of several stat constants (2.7) (#309)
Several of the constants were mistakenly stubbed with names starting with ST_ instead of S_. Fix them to match the module documentation.
This commit is contained in:
committed by
Guido van Rossum
parent
d2db605008
commit
6e3514ccd0
@@ -19,13 +19,13 @@ ST_SIZE = 0
|
||||
ST_ATIME = 0
|
||||
ST_MTIME = 0
|
||||
ST_CTIME = 0
|
||||
ST_IFSOCK = 0
|
||||
ST_IFLNK = 0
|
||||
ST_IFREG = 0
|
||||
ST_IFBLK = 0
|
||||
ST_IFDIR = 0
|
||||
ST_IFCHR = 0
|
||||
ST_IFIFO = 0
|
||||
S_IFSOCK = 0
|
||||
S_IFLNK = 0
|
||||
S_IFREG = 0
|
||||
S_IFBLK = 0
|
||||
S_IFDIR = 0
|
||||
S_IFCHR = 0
|
||||
S_IFIFO = 0
|
||||
S_ISUID = 0
|
||||
S_ISGID = 0
|
||||
S_ISVTX = 0
|
||||
|
||||
Reference in New Issue
Block a user