summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-07-03 23:27:37 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-07-03 23:27:37 (GMT)
commit3663abab59a397c971fb7e039f5f91b171be12d8 (patch)
treedbea97425864c40030db7ecc8f5a04fe90152343 /Misc
parentf07c9a1e693359f7f3bedaab55b88f92b5d8c3c9 (diff)
parentbbdc08ea6e5d3f2d9058991a65b6011dfbb8d233 (diff)
downloadcpython-3663abab59a397c971fb7e039f5f91b171be12d8.zip
cpython-3663abab59a397c971fb7e039f5f91b171be12d8.tar.gz
cpython-3663abab59a397c971fb7e039f5f91b171be12d8.tar.bz2
(merge 3.2) Issue #12451: xml.dom.pulldom: parse() now opens files in binary
mode instead of the text mode (using the locale encoding) to avoid encoding issues.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3007cdc..7e2831a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -209,6 +209,9 @@ Core and Builtins
Library
-------
+- Issue #12451: xml.dom.pulldom: parse() now opens files in binary mode instead
+ of the text mode (using the locale encoding) to avoid encoding issues.
+
- Issue #12147: Adjust the new-in-3.2 smtplib.send_message method for better
conformance to the RFCs: correctly handle Sender and Resent- headers.