summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2017-02-04 22:54:56 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2017-02-04 22:54:56 (GMT)
commitd3c4853b7869b347462343fd9df99f998e0eb018 (patch)
treea57a8027f52185ab3abf65040e694306e3668163 /Misc/NEWS
parent7e10dbbd45503268f7bb3b241e30745df6c91b99 (diff)
downloadcpython-d3c4853b7869b347462343fd9df99f998e0eb018.zip
cpython-d3c4853b7869b347462343fd9df99f998e0eb018.tar.gz
cpython-d3c4853b7869b347462343fd9df99f998e0eb018.tar.bz2
Issue #29416: Prevent infinite loop in pathlib.Path.mkdir
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 55303a5..9dac630 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -21,6 +21,8 @@ Extension Modules
Library
-------
+- Issue #29416: Prevent infinite loop in pathlib.Path.mkdir
+
- Issue #29444: Fixed out-of-bounds buffer access in the group() method of
the match object. Based on patch by WGH.