diff options
author | Raymond Hettinger <python@rcn.com> | 2002-06-01 19:51:15 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-06-01 19:51:15 +0000 |
commit | 32200aeac697fcb3f2b4528127a2fbf0a22a8f17 (patch) | |
tree | b99f2c04d576a3699ab9a2b6dfc1fc0e31e3c734 /Lib/macpath.py | |
parent | 16e3c427f35589ac3b83e8c13a8ec6495ec6cfa1 (diff) | |
download | cpython-git-32200aeac697fcb3f2b4528127a2fbf0a22a8f17.tar.gz |
Replaced obsolete stat module constants with equivalent attributes
Diffstat (limited to 'Lib/macpath.py')
-rw-r--r-- | Lib/macpath.py | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/Lib/macpath.py b/Lib/macpath.py index ad87cb1985..8546892877 100644 --- a/Lib/macpath.py +++ b/Lib/macpath.py @@ -100,25 +100,22 @@ def isdir(s): st = os.stat(s) except os.error: return 0 - return S_ISDIR(st[ST_MODE]) + return S_ISDIR(st.st_mode) # Get size, mtime, atime of files. def getsize(filename): """Return the size of a file, reported by os.stat().""" - st = os.stat(filename) - return st[ST_SIZE] + return os.stat(filename).st_size def getmtime(filename): """Return the last modification time of a file, reported by os.stat().""" - st = os.stat(filename) - return st[ST_MTIME] + return os.stat(filename).st_mtime def getatime(filename): """Return the last access time of a file, reported by os.stat().""" - st = os.stat(filename) - return st[ST_ATIME] + return os.stat(filename).st_atime def islink(s): @@ -138,7 +135,7 @@ def isfile(s): st = os.stat(s) except os.error: return False - return S_ISREG(st[ST_MODE]) + return S_ISREG(st.st_mode) def exists(s): |