summaryrefslogtreecommitdiff
path: root/NEWS.txt
diff options
context:
space:
mode:
Diffstat (limited to 'NEWS.txt')
-rw-r--r--NEWS.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/NEWS.txt b/NEWS.txt
index c2739ca..70a1dc7 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]