diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-02-04 20:53:57 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-02-04 20:53:57 (GMT) |
commit | 7e10dbbd45503268f7bb3b241e30745df6c91b99 (patch) | |
tree | f85d0be894a656f4c6dd473030a3e69ad9cddd6f /Misc | |
parent | c7611362b425277da80b2397e0abedee58138996 (diff) | |
download | cpython-7e10dbbd45503268f7bb3b241e30745df6c91b99.zip cpython-7e10dbbd45503268f7bb3b241e30745df6c91b99.tar.gz cpython-7e10dbbd45503268f7bb3b241e30745df6c91b99.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')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -21,6 +21,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). |