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
commitb61a9c8bcd73d7b6f1fca064079ef87441fefad5 (patch)
tree47fee9a53af2ff86fde2b95fcc74e44b51e8a21d /NEWS.txt
parented782bd6de93978b3762452df2e7fd097e594e36 (diff)
downloadbeautifulsoup4-b61a9c8bcd73d7b6f1fca064079ef87441fefad5.tar.gz
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]