summaryrefslogtreecommitdiff
path: root/CHANGELOG
diff options
context:
space:
mode:
authorLeonard Richardson <leonard.richardson@canonical.com>2011-02-20 09:54:22 -0500
committerLeonard Richardson <leonard.richardson@canonical.com>2011-02-20 09:54:22 -0500
commit48bb11cf93871cce51c8cb2c117b8c63e2a3db8d (patch)
tree575ce474032d2b2dbaacce269555a45161b39d7d /CHANGELOG
parent641e2598c4a1cd54bc698d15b7006e0949c4fd33 (diff)
downloadbeautifulsoup4-48bb11cf93871cce51c8cb2c117b8c63e2a3db8d.tar.gz
Added a test showing weird behavior when you .insert contents into an empty-element tag.
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG6
1 files changed, 3 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index ef05813..96a9ed4 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -59,9 +59,9 @@ The value of a.string used to be None, and now it's "foo".
Beautiful Soup's handling of empty-element tags (aka self-closing
tags) has been improved, especially when parsing XML. Previously you
-had to explicitly specify a list of empty-element tags. You can still
-do that, but if you don't, Beautiful Soup now considers any empty tag
-to be an empty-element tag.
+had to explicitly specify a list of empty-element tags when parsing
+XML. You can still do that, but if you don't, Beautiful Soup now
+considers any empty tag to be an empty-element tag.
The determination of empty-element-ness is now made at runtime rather
than parse time. If you add a child to an empty-element tag, it stops