diff options
author | Leonard Richardson <leonardr@segfault.org> | 2013-05-20 11:45:08 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2013-05-20 11:45:08 -0400 |
commit | b289252da31f1824ee9c85f1ce53907069d6dd7e (patch) | |
tree | bfc6115d76306aa871ad157142314049809d2748 /bs4/__init__.py | |
parent | 612922241894abf0467e77c12fc4bb8aa130ac41 (diff) |
A NavigableString object now has an immutable '.name' property whose
value is always None. This makes it easier to iterate over a mixed
list of tags and strings without having to check whether each
element is a tag or a string.
Diffstat (limited to 'bs4/__init__.py')
-rw-r--r-- | bs4/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bs4/__init__.py b/bs4/__init__.py index 03b2416..a949d6d 100644 --- a/bs4/__init__.py +++ b/bs4/__init__.py @@ -17,7 +17,7 @@ http://www.crummy.com/software/BeautifulSoup/bs4/doc/ """ __author__ = "Leonard Richardson (leonardr@segfault.org)" -__version__ = "4.2.1" +__version__ = "4.3.0" __copyright__ = "Copyright (c) 2004-2013 Leonard Richardson" __license__ = "MIT" |