commit | 9811861e3c31f2cb9d04853460408c4fea3d6f1b | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Thu Feb 24 02:26:51 2000 +0000 |
committer | Guido van Rossum <guido@python.org> | Thu Feb 24 02:26:51 2000 +0000 |
tree | 1b5e4e61966000619fd573eb488297ec47e6b54a | |
parent | 19ce91be92a31f4c24c0c5a88c568ae3b31f8fc6 [diff] |
Mark Favas discovered this: getatime() accidentally returned the MTIME! This fixes PR#211.
diff --git a/Lib/posixpath.py b/Lib/posixpath.py index 090f245..792a985 100644 --- a/Lib/posixpath.py +++ b/Lib/posixpath.py
@@ -143,7 +143,7 @@ def getatime(filename): """Return the last access time of a file, reported by os.stat().""" st = os.stat(filename) - return st[stat.ST_MTIME] + return st[stat.ST_ATIME] # Is a path a symbolic link?