summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHynek Schlawack <hs@ox.cx>2012-10-07 16:04:38 (GMT)
committerHynek Schlawack <hs@ox.cx>2012-10-07 16:04:38 (GMT)
commit0230b6af78c9059016df341dc94a4a09ccbe3881 (patch)
tree4e55f0d6c4cf3ab18b9f7af7865d96d0a44d6ef6 /Misc
parent83fe2e1c22e6ff72a308e82e1e24ca03f8c51339 (diff)
downloadcpython-0230b6af78c9059016df341dc94a4a09ccbe3881.zip
cpython-0230b6af78c9059016df341dc94a4a09ccbe3881.tar.gz
cpython-0230b6af78c9059016df341dc94a4a09ccbe3881.tar.bz2
#13498: Clarify docs of os.makedirs()'s exist_ok argument.
Done with great native-speaker help from R. David Murray.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5cd69b4..409c1f3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -609,6 +609,9 @@ Build
Documentation
-------------
+- Issue #13498: Clarify docs of os.makedirs()'s exist_ok argument. Done with
+ great native-speaker help from R. David Murray.
+
- Issue #15533: Clarify docs and add tests for subprocess.Popen()'s cwd
argument.