summaryrefslogtreecommitdiff
path: root/NEWS.txt
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2015-06-25 21:27:49 -0400
committerLeonard Richardson <leonardr@segfault.org>2015-06-25 21:27:49 -0400
commit51044d613cc782d883a6eb3cd0d3dc391e13c23b (patch)
tree3f832763747aef89ac6e12503e538ebb047747f0 /NEWS.txt
parent89a4bcc0e1053ff75cd22e6dba8edc8eff387385 (diff)
The text argument to the find_* methods is now called string,
which is more accurate. text still works, but is the argument described in the documentation. text may eventually change its meaning, but not for a very long time. [bug=1366856]
Diffstat (limited to 'NEWS.txt')
-rw-r--r--NEWS.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/NEWS.txt b/NEWS.txt
index cc4c976..1a6442d 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -9,6 +9,11 @@
* Added a Chinese translation of the documentation by Delong .w.
+* The `text` argument to the find_* methods is now called `string`,
+ which is more accurate. `text` still works, but `string` is the
+ argument described in the documentation. `text` may eventually
+ change its meaning, but not for a very long time. [bug=1366856]
+
* Fixed yet another problem that caused the html5lib tree builder to
create a disconnected parse tree. [bug=1237763]
@@ -61,6 +66,9 @@
* Improved the exception raised when you call .unwrap() or
.replace_with() on an element that's not attached to a tree.
+* You can now create a Tag object without specifying a
+ TreeBuilder. Patch by Martijn Pieters. [bug=1307471]
+
* You can now create a NavigableString or a subclass just by invoking
the constructor. [bug=1294315]