summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-05-12 14:31:16 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-05-12 14:31:16 (GMT)
commit3eab6b363a968e907605fe749d12941c3be29761 (patch)
tree2a2bdf318b72e49e7c3e534b005ada224693cebb /Misc
parent521ed521317ffd385afaabdd889879e7cb7461df (diff)
downloadcpython-3eab6b363a968e907605fe749d12941c3be29761.zip
cpython-3eab6b363a968e907605fe749d12941c3be29761.tar.gz
cpython-3eab6b363a968e907605fe749d12941c3be29761.tar.bz2
Issue #17606: Fixed support of encoded byte strings in the XMLGenerator
characters() and ignorableWhitespace() methods. Original patch by Sebastian Ortiz Vasquez.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 47b354d..1b4940e 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1254,6 +1254,7 @@ Kyle VanderBeek
Andrew Vant
Atul Varma
Dmitry Vasiliev
+Sebastian Ortiz Vasquez
Alexandre Vassalotti
Nadeem Vawda
Frank Vercruesse
diff --git a/Misc/NEWS b/Misc/NEWS
index 0d7700f..af14f93 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,6 +49,10 @@ Core and Builtins
Library
-------
+- Issue #17606: Fixed support of encoded byte strings in the XMLGenerator
+ .characters() and ignorableWhitespace() methods. Original patch by Sebastian
+ Ortiz Vasquez.
+
- Issue #17732: Ignore distutils.cfg options pertaining to install paths if a
virtual environment is active.