summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2013-01-10 14:27:53 (GMT)
committerEli Bendersky <eliben@gmail.com>2013-01-10 14:27:53 (GMT)
commite6174ca85e293039c464e06bf3a656300347b562 (patch)
treef78ed07b81f69ea07374c3199bdf6556683704eb /Misc
parent458c0d5a776746267f432e6860050af367fb5431 (diff)
downloadcpython-e6174ca85e293039c464e06bf3a656300347b562.zip
cpython-e6174ca85e293039c464e06bf3a656300347b562.tar.gz
cpython-e6174ca85e293039c464e06bf3a656300347b562.tar.bz2
Issue #16913: Fix Element.itertext()'s handling of text with XML entities.
Patch by Serhiy Storchaka
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0c1be46..fcd8694 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -348,6 +348,8 @@ Library
- Issue #16089: Allow ElementTree.TreeBuilder to work again with a non-Element
element_factory (fixes a regression in SimpleTAL).
+- Issue #16913: Fix Element.itertext()'s handling of text with XML entities.
+
- Issue #16034: Fix performance regressions in the new `bz2.BZ2File`
implementation. Initial patch by Serhiy Storchaka.