summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2013-01-13 14:04:43 (GMT)
committerEli Bendersky <eliben@gmail.com>2013-01-13 14:04:43 (GMT)
commita9a2ef5550e19844a078b9466d98ebca76e88943 (patch)
tree460ea32821af6282385adbcb3c04c5bce7e2a1ad /Misc
parenta50ff1887d706ff193b698013931516307972382 (diff)
downloadcpython-a9a2ef5550e19844a078b9466d98ebca76e88943.zip
cpython-a9a2ef5550e19844a078b9466d98ebca76e88943.tar.gz
cpython-a9a2ef5550e19844a078b9466d98ebca76e88943.tar.bz2
Close #14377: Add a new parameter to ElementTree.write and some module-level
serialization functions - short_empty_elements. It controls how elements without contents are emitted. Patch by Serhiy Storchaka. Feature initially proposed by Ariel Poliak.
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 2a261f4..8170d70 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -559,6 +559,10 @@ Library
- Issue #16123: IDLE - deprecate running without a subprocess.
Patch by Roger Serwy.
+- Issue #14377: ElementTree.write and some of the module-level functions have
+ a new parameter - *short_empty_elements*. It controls how elements with no
+ contents are emitted.
+
- Issue #16089: Allow ElementTree.TreeBuilder to work again with a non-Element
element_factory (fixes a regression in SimpleTAL).