@@ -58,6 +58,8 @@ Library
5858- Issue #18891: Completed the new email package (provisional) API additions
5959 by adding new classes EmailMessage, MIMEPart, and ContentManager.
6060
61+ - Issue #18281: Unused stat constants removed from `tarfile`.
62+
6163- Issue #18468: The re.split, re.findall, and re.sub functions and the group()
6264 and groups() methods of match object now always return a string or a bytes
6365 object.
@@ -183,6 +185,9 @@ Core and Builtins
183185Library
184186-------
185187
188+ - Issue #18929: `inspect.classify_class_attrs()` now correctly finds class
189+ attributes returned by `dir()` that are located in the metaclass.
190+
186191- Issue #18950: Fix miscellaneous bugs in the sunau module.
187192 Au_read.readframes() now updates current file position and reads correct
188193 number of frames from multichannel stream. Au_write.writeframesraw() now
@@ -296,6 +301,9 @@ Core and Builtins
296301
297302- Issue #18942: sys._debugmallocstats() output was damaged on Windows.
298303
304+ - Issue #18780: %-formatting now prints value instead of str for
305+ int subclasses when using %d, %i, and %u codes.
306+
299307- Issue #18571: Implementation of the PEP 446: file descriptors and file
300308 handles are now created non-inheritable; add functions
301309 os.get/set_inheritable(), os.get/set_handle_inheritable() and
0 commit comments