summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-02-04 20:55:40 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-02-04 20:55:40 (GMT)
commit86e42376c2f41e6601b1844fb127f2f2e7b5349a (patch)
treec0f806005f196f632922d5f2ea4d3d813c4e26a9 /Misc/NEWS
parent75c0d4f6bb97e723adc3a03c0ff6aaaee0c6981a (diff)
parent7e10dbbd45503268f7bb3b241e30745df6c91b99 (diff)
downloadcpython-86e42376c2f41e6601b1844fb127f2f2e7b5349a.zip
cpython-86e42376c2f41e6601b1844fb127f2f2e7b5349a.tar.gz
cpython-86e42376c2f41e6601b1844fb127f2f2e7b5349a.tar.bz2
Issue #29444: Fixed out-of-bounds buffer access in the group() method of
the match object. Based on patch by WGH.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f025d0f..097bd26 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -55,6 +55,9 @@ Extension Modules
Library
-------
+- Issue #29444: Fixed out-of-bounds buffer access in the group() method of
+ the match object. Based on patch by WGH.
+
- Issue #29335: Fix subprocess.Popen.wait() when the child process has
exited to a stopped instead of terminated state (ex: when under ptrace).