summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2017-04-14 02:26:24 (GMT)
committerGitHub <noreply@github.com>2017-04-14 02:26:24 (GMT)
commitd7abeb7024b9755c291c29bdc8c4494246e975ad (patch)
tree8349beb5d332334ace1a31ff9cfe67c1fa01af87 /Misc/NEWS
parent118cf91a312fcee11309b80f30c8a9ba901042da (diff)
downloadcpython-d7abeb7024b9755c291c29bdc8c4494246e975ad.zip
cpython-d7abeb7024b9755c291c29bdc8c4494246e975ad.tar.gz
cpython-d7abeb7024b9755c291c29bdc8c4494246e975ad.tar.bz2
[3.5] bpo-29694: race condition in pathlib mkdir with flags parents=True (GH-1089). (GH-1127)
(cherry picked from commit 22a594a0047d7706537ff2ac676cdc0f1dcb329c)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0caeefd..c6df1b8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -48,6 +48,10 @@ Extension Modules
Library
-------
+
+- bpo-29694: Fixed race condition in pathlib mkdir with flags
+ parents=True. Patch by Armin Rigo.
+
- bpo-29692: Fixed arbitrary unchaining of RuntimeError exceptions in
contextlib.contextmanager.
Patch by Siddharth Velankar.