summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTerry Reedy <tjreedy@udel.edu>2010-12-02 07:05:56 (GMT)
committerTerry Reedy <tjreedy@udel.edu>2010-12-02 07:05:56 (GMT)
commit5a22b651173f142a600625a036fcf36484ade237 (patch)
tree35221434a0451ee9cf205f2e9dc17a69af69d596 /Misc
parent3cdf871a8c9bc5694a598bfdf22edece49584f48 (diff)
downloadcpython-5a22b651173f142a600625a036fcf36484ade237.zip
cpython-5a22b651173f142a600625a036fcf36484ade237.tar.gz
cpython-5a22b651173f142a600625a036fcf36484ade237.tar.bz2
Issue 9299 Add exist_ok parameter to os.makedirs to suppress 'File exists' exception. Patch by Ray Allen.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 0f7ed37..d3ec047 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -18,6 +18,7 @@ Matthew Ahrens
Nir Aides
Yaniv Aknin
Jyrki Alakuijala
+Ray Allen
Billy G. Allie
Kevin Altis
Joe Amenta
diff --git a/Misc/NEWS b/Misc/NEWS
index b2c8258..f19b6f4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,6 +46,10 @@ Core and Builtins
Library
-------
+- Issue #9299: Add exist_ok parameter to os.makedirs to suppress the
+ 'File exists' exception when a target directory already exists with the
+ specified mode. Patch by Ray Allen.
+
- Issue #9573: os.fork() now works correctly when triggered as a side effect
of a module import