summaryrefslogtreecommitdiffstats
path: root/Lib/stat.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-03-20 07:25:55 (GMT)
committerGeorg Brandl <georg@python.org>2008-03-20 07:25:55 (GMT)
commit402b2707997db0de64ad789247386a3851b6e92c (patch)
tree76b02eca1fb976dcc58eaabdb9a715d80ac71bb4 /Lib/stat.py
parent6af3db8632783cf1f46ae1798b29db169007431b (diff)
downloadcpython-402b2707997db0de64ad789247386a3851b6e92c.zip
cpython-402b2707997db0de64ad789247386a3851b6e92c.tar.gz
cpython-402b2707997db0de64ad789247386a3851b6e92c.tar.bz2
#2383: remove obsolete XXX comment in stat.py.
Diffstat (limited to 'Lib/stat.py')
-rw-r--r--Lib/stat.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/Lib/stat.py b/Lib/stat.py
index 5f41687..4a9d30c 100644
--- a/Lib/stat.py
+++ b/Lib/stat.py
@@ -3,12 +3,7 @@
Suggested usage: from stat import *
"""
-# 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 MS-DOS).
-
-# Indices for stat struct members in tuple returned by os.stat()
+# Indices for stat struct members in the tuple returned by os.stat()
ST_MODE = 0
ST_INO = 1