summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:40:41 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:40:41 (GMT)
commitf51d715845dfede2803ef7a2e6ea4e2a03f18486 (patch)
tree976bc3c3a7633d32b6bccb715cda9da34857e6c4 /Misc
parenta84f6c3dd3ef02bdbbc67b4cd1223749f3c39030 (diff)
downloadcpython-f51d715845dfede2803ef7a2e6ea4e2a03f18486.zip
cpython-f51d715845dfede2803ef7a2e6ea4e2a03f18486.tar.gz
cpython-f51d715845dfede2803ef7a2e6ea4e2a03f18486.tar.bz2
Issue #25523: Further a-to-an corrections new in 3.5.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5fb54d8..9626c49 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2483,7 +2483,7 @@ Library
- Issue #20170: Convert posixmodule to use Argument Clinic.
-- Issue #21539: Add a *exists_ok* argument to `Pathlib.mkdir()` to mimic
+- Issue #21539: Add an *exists_ok* argument to `Pathlib.mkdir()` to mimic
`mkdir -p` and `os.makedirs()` functionality. When true, ignore
FileExistsErrors. Patch by Berker Peksag.