diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-12-16 19:22:37 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-12-16 19:22:37 (GMT) |
commit | 0048c98fef96fa5df30db535bc124ee9aac341b0 (patch) | |
tree | 70c4cd0630369a5aef472813c185fa8e8466ae47 /Misc | |
parent | c274fd22edd2471b4f73f5cc690851cfbc716589 (diff) | |
download | cpython-0048c98fef96fa5df30db535bc124ee9aac341b0.zip cpython-0048c98fef96fa5df30db535bc124ee9aac341b0.tar.gz cpython-0048c98fef96fa5df30db535bc124ee9aac341b0.tar.bz2 |
Issue #19921: When Path.mkdir() is called with parents=True, any missing parent is created with the default permissions, ignoring the mode argument (mimicking the POSIX "mkdir -p" command).
Patch by Serhiy.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -44,6 +44,10 @@ Core and Builtins Library ------- +- Issue #19921: When Path.mkdir() is called with parents=True, any missing + parent is created with the default permissions, ignoring the mode argument + (mimicking the POSIX "mkdir -p" command). + - Issue #19887: Improve the Path.resolve() algorithm to support certain symlink chains. |