summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEthan Furman <ethan@stoneleaf.us>2013-10-18 02:34:12 (GMT)
committerEthan Furman <ethan@stoneleaf.us>2013-10-18 02:34:12 (GMT)
commit0e0cd46227bb3e95cc6395ef514bf13f0d30c668 (patch)
tree6a629b5199543151559cc852b277feed68624cb7 /Misc
parent3c97e46f63fb9dc4ae1a886a9cd05aea443afdf2 (diff)
downloadcpython-0e0cd46227bb3e95cc6395ef514bf13f0d30c668.zip
cpython-0e0cd46227bb3e95cc6395ef514bf13f0d30c668.tar.gz
cpython-0e0cd46227bb3e95cc6395ef514bf13f0d30c668.tar.bz2
Catching up on NEWS entries.
I'll make sure and include them in future patches.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS8
1 files changed, 8 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d5bfdce..90b2e45 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -58,6 +58,8 @@ Library
- Issue #18891: Completed the new email package (provisional) API additions
by adding new classes EmailMessage, MIMEPart, and ContentManager.
+- Issue #18281: Unused stat constants removed from `tarfile`.
+
- Issue #18468: The re.split, re.findall, and re.sub functions and the group()
and groups() methods of match object now always return a string or a bytes
object.
@@ -183,6 +185,9 @@ Core and Builtins
Library
-------
+- Issue #18929: `inspect.classify_class_attrs()` now correctly finds class
+ attributes returned by `dir()` that are located in the metaclass.
+
- Issue #18950: Fix miscellaneous bugs in the sunau module.
Au_read.readframes() now updates current file position and reads correct
number of frames from multichannel stream. Au_write.writeframesraw() now
@@ -296,6 +301,9 @@ Core and Builtins
- Issue #18942: sys._debugmallocstats() output was damaged on Windows.
+- Issue #18780: %-formatting now prints value instead of str for
+ int subclasses when using %d, %i, and %u codes.
+
- Issue #18571: Implementation of the PEP 446: file descriptors and file
handles are now created non-inheritable; add functions
os.get/set_inheritable(), os.get/set_handle_inheritable() and