summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-11-18 15:34:26 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-11-18 15:34:26 (GMT)
commit8008f2aba0c063a882c33ebd4b39a5a560deb8c0 (patch)
treee40e0b93e6dac9b1c2b5efa5769226884caab0db /Misc
parente62aad3073c6fe329d8cd67dda21199c67630ed5 (diff)
downloadcpython-8008f2aba0c063a882c33ebd4b39a5a560deb8c0.zip
cpython-8008f2aba0c063a882c33ebd4b39a5a560deb8c0.tar.gz
cpython-8008f2aba0c063a882c33ebd4b39a5a560deb8c0.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 4fb9ff6..8a82b09 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -76,6 +76,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.
+
- Issues #1745761, #755670, #13357, #12629, #1200313: HTMLParser now correctly
handles non-valid attributes, including adjacent and unquoted attributes.