summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-12-16 19:22:37 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-12-16 19:22:37 (GMT)
commit0048c98fef96fa5df30db535bc124ee9aac341b0 (patch)
tree70c4cd0630369a5aef472813c185fa8e8466ae47 /Misc
parentc274fd22edd2471b4f73f5cc690851cfbc716589 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 52b0a3d..3525edf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.