summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2010-08-18 22:30:34 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2010-08-18 22:30:34 (GMT)
commit4ea04a306f6f43c9dc2f9c196b658abf021a8362 (patch)
tree92fceb1199e346339dca396ed312292d42cf07f8 /Misc
parent0fc86b86ed1381866f159f534125449d069c1785 (diff)
downloadcpython-4ea04a306f6f43c9dc2f9c196b658abf021a8362.zip
cpython-4ea04a306f6f43c9dc2f9c196b658abf021a8362.tar.gz
cpython-4ea04a306f6f43c9dc2f9c196b658abf021a8362.tar.bz2
#7647: add ST_RDONLY, ST_NOSUID constants to os module.
(Also fix a name ordering in the ACKS file.)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS3
-rw-r--r--Misc/NEWS3
2 files changed, 5 insertions, 1 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 4ad93a3..eef51e3 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -389,8 +389,9 @@ Tony Ingraldi
John Interrante
Bob Ippolito
Atsuo Ishimoto
-Paul Jackson
+Adam Jackson
Ben Jackson
+Paul Jackson
David Jacobs
Kevin Jacobs
Kjetil Jacobsen
diff --git a/Misc/NEWS b/Misc/NEWS
index 5b22508..23245a8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -152,6 +152,9 @@ Library
using the filesystem encoding and surrogateescape error handler. Patch
written by David Watson.
+- Issue #7647: The posix module now has the ST_RDONLY and ST_NOSUID
+ constants, for use with the statvfs() function. Patch by Adam Jackson.
+
- Issue #8688: MANIFEST files created by distutils now include a magic
comment indicating they are generated. Manually maintained MANIFESTs
without this marker will not be overwritten or removed.