summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-09-23 01:14:35 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-09-23 01:14:35 (GMT)
commit89f76d3f913e0527fbcc0d15cb3c17fbf6ca8618 (patch)
tree424af9f48cbd50e1e1dc00aaa2230a57dd816a8b /Misc
parentf94471c1401e06df3021eafdde99c9be2c344dcb (diff)
downloadcpython-89f76d3f913e0527fbcc0d15cb3c17fbf6ca8618.zip
cpython-89f76d3f913e0527fbcc0d15cb3c17fbf6ca8618.tar.gz
cpython-89f76d3f913e0527fbcc0d15cb3c17fbf6ca8618.tar.bz2
Issue #25047: Respect case writing XML encoding declarations
This restores the ability to write encoding names in uppercase like "UTF-8", which worked in Python 2.
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 90d9e1f..347dd6f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -81,6 +81,10 @@ Core and Builtins
Library
-------
+- Issue #25047: The XML encoding declaration written by Element Tree now
+ respects the letter case given by the user. This restores the ability to
+ write encoding names in uppercase like "UTF-8", which worked in Python 2.
+
- Issue #19143: platform module now reads Windows version from kernel32.dll to
avoid compatibility shims.