]> granicus.if.org Git - python/commitdiff
Issue #29444: Fixed out-of-bounds buffer access in the group() method of
authorSerhiy Storchaka <storchaka@gmail.com>
Sat, 4 Feb 2017 20:57:44 +0000 (22:57 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Sat, 4 Feb 2017 20:57:44 +0000 (22:57 +0200)
the match object.  Based on patch by WGH.

1  2 
Lib/test/test_re.py
Misc/NEWS
Modules/_sre.c

Simple merge
diff --cc Misc/NEWS
index a4adbdae53c0edfe92cfe010d785acae89855c03,097bd269423a7a3b1ac3b491a6bb3c9ae9ca0169..0d77f02178dbd0ff5445fb0a0ee6775223e0d0a5
+++ 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).
  
diff --cc Modules/_sre.c
Simple merge