diff options
author | Terry Reedy <tjreedy@udel.edu> | 2010-12-02 07:05:56 (GMT) |
---|---|---|
committer | Terry Reedy <tjreedy@udel.edu> | 2010-12-02 07:05:56 (GMT) |
commit | 5a22b651173f142a600625a036fcf36484ade237 (patch) | |
tree | 35221434a0451ee9cf205f2e9dc17a69af69d596 /Misc | |
parent | 3cdf871a8c9bc5694a598bfdf22edece49584f48 (diff) | |
download | cpython-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/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -18,6 +18,7 @@ Matthew Ahrens Nir Aides Yaniv Aknin Jyrki Alakuijala +Ray Allen Billy G. Allie Kevin Altis Joe Amenta @@ -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 |