summaryrefslogtreecommitdiff
path: root/NEWS.txt
diff options
context:
space:
mode:
Diffstat (limited to 'NEWS.txt')
-rw-r--r--NEWS.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/NEWS.txt b/NEWS.txt
index 781a514..f714bfe 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -8,6 +8,13 @@
you strings that are visible in the document--no comments or
processing commands. [bug=1050164]
+* The BeautifulSoup class is now aliased to "_s" and "_soup", making
+ it quicker to type an import statement in an interactive session:
+
+ from bs4 import _s
+ or
+ from bs4 import _soup
+
* Fix a bug in the html5lib treebuilder which sometimes created
disconnected trees. [bug=1039527]
@@ -20,6 +27,10 @@
* Stop a crash when unwisely messing with a tag that's been
decomposed. [bug=1097699]
+* Now that lxml's segfault on invalid doctype has been fixed, fix a
+ corresponding problem on the Beautiful Soup end that was previously
+ invisible. [bug=984936]
+
= 4.1.3 (20120820) =
* Skipped a test under Python 2.6 and Python 3.1 to avoid a spurious