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).