summaryrefslogtreecommitdiff
path: root/Lib/stat.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-08-23 13:32:20 +0000
committerGuido van Rossum <guido@python.org>1994-08-23 13:32:20 +0000
commit7aeb4b9ce85fa9d15c79bbb3c1ccf6cc31cd5e61 (patch)
tree4dc519fdd727cc179d5b884ae117871ec02695eb /Lib/stat.py
parent9e1e149a5fbb0b24c4f3b7a2cc52e5236a715ee4 (diff)
downloadcpython-git-7aeb4b9ce85fa9d15c79bbb3c1ccf6cc31cd5e61.tar.gz
* Lib/linecache.py: don't crash on empty filename
* Lib/macpath.py: don't return trailing colon for dirname() (XXX won't do for volume names -- but otherwise glob(':*:*.py') loops forever) * Lib/traceback.py: print SyntaxError correctly * Lib/stat.py: moved to posixstat.py; added macstat.py which has the constants for the Mac; and created new stat.py which includes the right one * Lib/urllib.py: fix caching bug (by disabling the cache)
Diffstat (limited to 'Lib/stat.py')
-rw-r--r--Lib/stat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/stat.py b/Lib/stat.py
index 381e28a9bc..5f6f522dc2 100644
--- a/Lib/stat.py
+++ b/Lib/stat.py
@@ -8,7 +8,7 @@
# XXX Strictly spoken, this module may have to be adapted for each POSIX
# implementation; in practice, however, the numeric constants used by
# stat() are almost universal (even for stat() emulations on non-UNIX
-# systems like Macintosh or MS-DOS).
+# systems like MS-DOS).
# Indices for stat struct members in tuple returned by os.stat()