summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-02-04 16:26:15 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-02-04 16:26:15 (GMT)
commit43536e9e373f395a047403831c08acedf3c5f258 (patch)
tree8d5ba1618b26756b21791efa0cfea317af28e008 /Misc
parent95b7110a1145d28fd9786c101ad568c7a2e4fb6e (diff)
downloadcpython-43536e9e373f395a047403831c08acedf3c5f258.zip
cpython-43536e9e373f395a047403831c08acedf3c5f258.tar.gz
cpython-43536e9e373f395a047403831c08acedf3c5f258.tar.bz2
Issue #17089: Expat parser now correctly works with string input not only when
an internal XML encoding is UTF-8 or US-ASCII. It now accepts bytes and strings larger than 2 GiB.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7a04599..07a33ce 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -212,6 +212,10 @@ Core and Builtins
Library
-------
+- Issue #17089: Expat parser now correctly works with string input not only when
+ an internal XML encoding is UTF-8 or US-ASCII. It now accepts bytes and
+ strings larger than 2 GiB.
+
- Issue #16903: Popen.communicate() on Unix now accepts strings when
universal_newlines is true as on Windows.