summaryrefslogtreecommitdiff
path: root/NEWS.txt
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2017-05-06 21:38:56 -0400
committerLeonard Richardson <leonardr@segfault.org>2017-05-06 21:38:56 -0400
commitfe6afd533f5ae0344616b98776a96f87f439485e (patch)
tree70dd5f46e23885d1d6dcbe6488f576aeecf46179 /NEWS.txt
parente21aa406ab7c524692e2d462e1f30a4c37b1f0fc (diff)
downloadbeautifulsoup4-fe6afd533f5ae0344616b98776a96f87f439485e.tar.gz
Replace get_attribute_text with get_attribute_list.
Diffstat (limited to 'NEWS.txt')
-rw-r--r--NEWS.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/NEWS.txt b/NEWS.txt
index 91fe13c..602e7c1 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -1,8 +1,8 @@
= 4.6.0 (Unreleased) =
-* Added the `Tag.get_attribute_text` method, which acts like `Tag.get` for
- getting the value of an attribute, but which joins attribute
- multi-values into a single string value. [bug=1678589]
+* Added the `Tag.get_attribute_list` method, which acts like `Tag.get` for
+ getting the value of an attribute, but which always returns a list,
+ whether or not the attribute is a multi-value attribute. [bug=1678589]
* It's now possible to use a tag's namespace prefix when searching,
e.g. soup.find('namespace:tag') [bug=1655332]