summaryrefslogtreecommitdiffstats
path: root/Lib/imputil.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2002-06-01 19:51:15 (GMT)
committerRaymond Hettinger <python@rcn.com>2002-06-01 19:51:15 (GMT)
commit32200aeac697fcb3f2b4528127a2fbf0a22a8f17 (patch)
treeb99f2c04d576a3699ab9a2b6dfc1fc0e31e3c734 /Lib/imputil.py
parent16e3c427f35589ac3b83e8c13a8ec6495ec6cfa1 (diff)
downloadcpython-32200aeac697fcb3f2b4528127a2fbf0a22a8f17.zip
cpython-32200aeac697fcb3f2b4528127a2fbf0a22a8f17.tar.gz
cpython-32200aeac697fcb3f2b4528127a2fbf0a22a8f17.tar.bz2
Replaced obsolete stat module constants with equivalent attributes
Diffstat (limited to 'Lib/imputil.py')
-rw-r--r--Lib/imputil.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/imputil.py b/Lib/imputil.py
index d83b16e..5d462f1 100644
--- a/Lib/imputil.py
+++ b/Lib/imputil.py
@@ -484,7 +484,7 @@ def _os_path_isdir(pathname):
s = _os_stat(pathname)
except OSError:
return None
- return (s[0] & 0170000) == 0040000
+ return (s.st_mode & 0170000) == 0040000
def _timestamp(pathname):
"Return the file modification time as a Long."
@@ -492,7 +492,7 @@ def _timestamp(pathname):
s = _os_stat(pathname)
except OSError:
return None
- return long(s[8])
+ return long(s.st_mtime)
######################################################################