diff options
Diffstat (limited to 'Lib/stat.py')
-rw-r--r-- | Lib/stat.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/stat.py b/Lib/stat.py index 46837c0..a9c678e 100644 --- a/Lib/stat.py +++ b/Lib/stat.py @@ -111,6 +111,7 @@ SF_SNAPSHOT = 0x00200000 # file is a snapshot file _filemode_table = ( ((S_IFLNK, "l"), + (S_IFSOCK, "s"), # Must appear before IFREG and IFDIR as IFSOCK == IFREG | IFDIR (S_IFREG, "-"), (S_IFBLK, "b"), (S_IFDIR, "d"), |