summaryrefslogtreecommitdiff
path: root/NEWS.txt
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2013-05-07 10:58:27 -0400
committerLeonard Richardson <leonardr@segfault.org>2013-05-07 10:58:27 -0400
commit1cd5ad49b15d17fac017543876ec5d0a67b57b69 (patch)
tree2b56628a4a16c53d654df0d7478ebcbc50ee5db4 /NEWS.txt
parent431e078fbdb54adeb3875cb8c5cc75d6722de2bd (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.txt11
1 files changed, 10 insertions, 1 deletions
diff --git a/NEWS.txt b/NEWS.txt
index 03418ab..dbc9cae 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -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]