summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2012-06-03 21:35:09 (GMT)
committerGregory P. Smith <greg@krypto.org>2012-06-03 21:35:09 (GMT)
commitf0a9a9b50264cb9323eb8264af5dc03a7d2bb1b4 (patch)
treea6d35ee23113002c08f7f74b1ea5b3560a5ae5de /Misc
parent82ffabdfa4de985690c76fd7498a77e9604e1747 (diff)
parenta81c8564365d4485bcf1d413b92fb275c091831d (diff)
downloadcpython-f0a9a9b50264cb9323eb8264af5dc03a7d2bb1b4.zip
cpython-f0a9a9b50264cb9323eb8264af5dc03a7d2bb1b4.tar.gz
cpython-f0a9a9b50264cb9323eb8264af5dc03a7d2bb1b4.tar.bz2
Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError
when the path existed and had the S_ISGID mode bit set when it was not explicitly asked for. This is no longer an exception as mkdir cannot control if the OS sets that bit for it or not.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e732604..f0bac32 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,11 @@ What's New in Python 3.3.0 Beta 1?
Library
-------
+- Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError
+ when the path existed and had the S_ISGID mode bit set when it was
+ not explicitly asked for. This is no longer an exception as mkdir
+ cannot control if the OS sets that bit for it or not.
+
- Issue #14989: Make the CGI enable option to http.server available via command
line.