summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-11-18 15:30:28 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-11-18 15:30:28 (GMT)
commit93bbb6a9a641d54c242651e97948c15be911c9bb (patch)
treeeb132cf7de83c92c47a54f72aeabb75c7e491ce7 /Misc
parentba41c6a1c3ed8b4f00703df8c9ed1d8ec73174c8 (diff)
downloadcpython-93bbb6a9a641d54c242651e97948c15be911c9bb.zip
cpython-93bbb6a9a641d54c242651e97948c15be911c9bb.tar.gz
cpython-93bbb6a9a641d54c242651e97948c15be911c9bb.tar.bz2
#4147: minidom's toprettyxml no longer adds whitespace around a text node when it is the only child of an element. Initial patch by Dan Kenigsberg.
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 a208309..da67838 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -79,6 +79,10 @@ Core and Builtins
Library
-------
+- Issue #4147: minidom's toprettyxml no longer adds whitespace around a text
+ node when it is the only child of an element. Initial patch by Dan
+ Kenigsberg.
+
- Issue #8793: Prevent IDLE crash when given strings with invalid hex escape
sequences.