diff options
author | Leonard Richardson <leonardr@segfault.org> | 2013-05-07 10:58:27 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2013-05-07 10:58:27 -0400 |
commit | 1cd5ad49b15d17fac017543876ec5d0a67b57b69 (patch) | |
tree | 2b56628a4a16c53d654df0d7478ebcbc50ee5db4 /NEWS.txt | |
parent | 431e078fbdb54adeb3875cb8c5cc75d6722de2bd (diff) |
Added support for the "nth-of-type" CSS selector. The CSS selector ">" can now find a tag by means other than the tag name. Code by Sven Slootweg.
Diffstat (limited to 'NEWS.txt')
-rw-r--r-- | NEWS.txt | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -9,15 +9,24 @@ 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: + it quicker to type the import statement in an interactive session: from bs4 import _s or from bs4 import _soup + This may change in the future, so don't use this in code that goes + into a file. + * The prettify() method now leaves the contents of <pre> tags alone. [bug=1095654] +* Added support for the "nth-of-type" CSS selector. Code by Sven + Slootweg. [bug=1109952] + +* The CSS selector ">" can now find a tag by means other than the + tag name. Code by Sven Slootweg. [bug=1109952] + * Fix a bug in the html5lib treebuilder which sometimes created disconnected trees. [bug=1039527] |