summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2013-01-10 14:35:18 (GMT)
committerEli Bendersky <eliben@gmail.com>2013-01-10 14:35:18 (GMT)
commit8eee081d4041a59b3c8088cba8dcaafc22a88c00 (patch)
tree190b10f34127628c8c2978660c072cf4a57763bb /Misc
parente6174ca85e293039c464e06bf3a656300347b562 (diff)
downloadcpython-8eee081d4041a59b3c8088cba8dcaafc22a88c00.zip
cpython-8eee081d4041a59b3c8088cba8dcaafc22a88c00.tar.gz
cpython-8eee081d4041a59b3c8088cba8dcaafc22a88c00.tar.bz2
Update Misc/NEWS for issue #16076
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 6 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fcd8694..4aabffe 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -345,10 +345,15 @@ Library
- Issue #16169: Fix ctypes.WinError()'s confusion between errno and winerror.
+- Issue #16076: Made _elementtree.Element pickleable in a way that is compatible
+ with the Python Element. Pickling/unpickling of xml.etree.ElementTree.Element
+ works again - this was a temporary regression from 3.2 where the by-default
+ imported _elementtree had no pickling capability.
+
- 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 #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.