diff options
author | Leonard Richardson <leonardr@segfault.org> | 2013-05-07 09:40:47 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2013-05-07 09:40:47 -0400 |
commit | 457fa9096e5cee673063b41d58da9f2442814f0f (patch) | |
tree | a5bfd05b0d7e4caa2f0cce2bd7a63725057f3bd8 /NEWS.txt | |
parent | 4a0f656752dc2de3f3451397e09e806ad2874ea1 (diff) | |
parent | 5b3860ec348b66976de64b5be407704041102869 (diff) |
Merged.
Diffstat (limited to 'NEWS.txt')
-rw-r--r-- | NEWS.txt | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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 |