summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2016-09-10 00:09:43 (GMT)
committerR David Murray <rdmurray@bitdance.com>2016-09-10 00:09:43 (GMT)
commit1319236167041f01c4efd4f7cc1400d2e4a18275 (patch)
tree8250271c7c49be0611cb5c847a950fe68bbf849b /Misc/NEWS
parent223f12c9eb6af8af3e688197aac1a95636f2fec4 (diff)
parent347dc95cd3b2d5d00a6d1a378084d87d32a47ab0 (diff)
downloadcpython-1319236167041f01c4efd4f7cc1400d2e4a18275.zip
cpython-1319236167041f01c4efd4f7cc1400d2e4a18275.tar.gz
cpython-1319236167041f01c4efd4f7cc1400d2e4a18275.tar.bz2
Merge: #14977: Make mailcap respect the order of the lines in the mailcap file.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 649c391..3012a97 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -122,6 +122,9 @@ Core and Builtins
Library
-------
+- Issue #14977: mailcap now respects the order of the lines in the mailcap
+ files ("first match"), as required by RFC 1542. Patch by Michael Lazar.
+
- Issue #28025: Convert all ssl module constants to IntEnum and IntFlags.
SSLContext properties now return flags and enums.
@@ -145,6 +148,10 @@ Library
- Issue #24277: The new email API is no longer provisional, and the docs
have been reorganized and rewritten to emphasize the new API.
+- Issue #22450: urllib now includes an "Accept: */*" header among the
+ default headers. This makes the results of REST API requests more
+ consistent and predictable especially when proxy servers are involved.
+
- lib2to3.pgen3.driver.load_grammar() now creates a stable cache file
between runs given the same Grammar.txt input regardless of the hash
randomization setting.