mirror of https://github.com/python/cpython
(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.
This commit is contained in:
commit
3663abab59
|
@ -326,7 +326,7 @@ def parse(stream_or_string, parser=None, bufsize=None):
|
||||||
if bufsize is None:
|
if bufsize is None:
|
||||||
bufsize = default_bufsize
|
bufsize = default_bufsize
|
||||||
if isinstance(stream_or_string, str):
|
if isinstance(stream_or_string, str):
|
||||||
stream = open(stream_or_string)
|
stream = open(stream_or_string, 'rb')
|
||||||
else:
|
else:
|
||||||
stream = stream_or_string
|
stream = stream_or_string
|
||||||
if not parser:
|
if not parser:
|
||||||
|
|
|
@ -209,6 +209,9 @@ Core and Builtins
|
||||||
Library
|
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
|
- Issue #12147: Adjust the new-in-3.2 smtplib.send_message method for better
|
||||||
conformance to the RFCs: correctly handle Sender and Resent- headers.
|
conformance to the RFCs: correctly handle Sender and Resent- headers.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue