summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2017-02-04 14:56:57 -0800
committerSteve Dower <steve.dower@microsoft.com>2017-02-04 14:56:57 -0800
commitf687fbcd73c14dfcbe086eb5cd94b298f1e81e72 (patch)
tree49023a177430af6291f33d14c2540ff7d46b10ca /Misc/NEWS
parent44a28ecbe2c09fe5ec4959c254fdfe5b6a9fe322 (diff)
parentb53654b6dbfce8318a7d4d1cdaddca7a7fec194b (diff)
downloadcpython-f687fbcd73c14dfcbe086eb5cd94b298f1e81e72.tar.gz
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 0d77f02178..494f314879 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -223,6 +223,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.