From: Guido van Rossum Date: Wed, 31 Oct 1990 11:25:23 +0000 (+0000) Subject: Added S_IMODE() to strip the file type (S_IFMT) from a mode. X-Git-Tag: v0.9.8~1127 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=468c448bccf4788e57e7f4e484d0285da54dedc7;p=thirdparty%2FPython%2Fcpython.git Added S_IMODE() to strip the file type (S_IFMT) from a mode. --- diff --git a/Lib/stat.py b/Lib/stat.py index 273745d8035f..fee49659a700 100644 --- a/Lib/stat.py +++ b/Lib/stat.py @@ -22,6 +22,8 @@ ST_ATIME = 7 ST_MTIME = 8 ST_CTIME = 9 +def S_IMODE(mode): + return mode%4096 def S_IFMT(mode): return mode - mode%4096