From: Serhiy Storchaka Date: Sat, 4 Feb 2017 20:57:44 +0000 (+0200) Subject: Issue #29444: Fixed out-of-bounds buffer access in the group() method of X-Git-Tag: v3.7.0a1~1416 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef5176769d5e54374d84b44f8be2c94f6ab909fa;p=python Issue #29444: Fixed out-of-bounds buffer access in the group() method of the match object. Based on patch by WGH. --- ef5176769d5e54374d84b44f8be2c94f6ab909fa diff --cc Misc/NEWS index a4adbdae53,097bd26942..0d77f02178 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -223,20 -55,9 +223,23 @@@ Extension Module Library ------- + - Issue #29444: Fixed out-of-bounds buffer access in the group() method of + the match object. Based on patch by WGH. + +- Issue #29377: Add SlotWrapperType, MethodWrapperType, and + MethodDescriptorType built-in types to types module. + Original patch by Manuel Krebber. + +- Issue #29218: Unused install_misc command is now removed. It has been + documented as unused since 2000. Patch by Eric N. Vander Weele. + +- Issue #29368: The extend() method is now called instead of the append() + method when unpickle collections.deque and other list-like objects. + This can speed up unpickling to 2 times. + +- Issue #29338: The help of a builtin or extension class now includes the + constructor signature if __text_signature__ is provided for the class. + - Issue #29335: Fix subprocess.Popen.wait() when the child process has exited to a stopped instead of terminated state (ex: when under ptrace).