summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-10-04 17:53:29 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-10-04 17:53:29 (GMT)
commitee329318db90d59a81b8d69a2ad8e32c0aa59cd9 (patch)
tree04fa62ef1d45d8f2533bd3f752b7e75e4f5a1910 /Misc
parent3934b61a1606161e38d53628a8dc7bde19d8767b (diff)
downloadcpython-ee329318db90d59a81b8d69a2ad8e32c0aa59cd9.zip
cpython-ee329318db90d59a81b8d69a2ad8e32c0aa59cd9.tar.gz
cpython-ee329318db90d59a81b8d69a2ad8e32c0aa59cd9.tar.bz2
Issue #16089: Allow ElementTree.TreeBuilder to work again with a non-Element element_factory (fixes a regression in SimpleTAL).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3ad1bc8..74c2004 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,9 @@ Core and Builtins
Library
-------
+- Issue #16089: Allow ElementTree.TreeBuilder to work again with a non-Element
+ element_factory (fixes a regression in SimpleTAL).
+
- Issue #16034: Fix performance regressions in the new `bz2.BZ2File`
implementation. Initial patch by Serhiy Storchaka.