summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2017-02-04 22:56:57 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2017-02-04 22:56:57 (GMT)
commit479d96c694ea5158e5c00a86ca121c19ff43352e (patch)
treeec1d2d1b24d8195eee082ec01e2a76db786ff5ad /Misc
parentef5176769d5e54374d84b44f8be2c94f6ab909fa (diff)
parent1add96f1b669436ca96dc8adf24276adea6aea4c (diff)
downloadcpython-479d96c694ea5158e5c00a86ca121c19ff43352e.zip
cpython-479d96c694ea5158e5c00a86ca121c19ff43352e.tar.gz
cpython-479d96c694ea5158e5c00a86ca121c19ff43352e.tar.bz2
Issue #29416: Prevent infinite loop in pathlib.Path.mkdir
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0d77f02..494f314 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.