summaryrefslogtreecommitdiff
path: root/bs4
diff options
context:
space:
mode:
authorLeonard Richardson <leonard.richardson@canonical.com>2012-02-16 08:26:47 -0500
committerLeonard Richardson <leonard.richardson@canonical.com>2012-02-16 08:26:47 -0500
commit97ac0bc1947b3c5ea7d262d268f42ab629117441 (patch)
tree4edf6f2f170b96169ced28cd6d7fb1c6bf03fb6b /bs4
parent87747b712cfe63d173332f06ee1ba2bf9adf9ce5 (diff)
Prep for release.
Diffstat (limited to 'bs4')
-rw-r--r--bs4/__init__.py15
-rw-r--r--bs4/doc/source/index.rst5
2 files changed, 10 insertions, 10 deletions
diff --git a/bs4/__init__.py b/bs4/__init__.py
index 1aaa6dd..98ac57b 100644
--- a/bs4/__init__.py
+++ b/bs4/__init__.py
@@ -3,22 +3,21 @@ Elixir and Tonic
"The Screen-Scraper's Friend"
http://www.crummy.com/software/BeautifulSoup/
-Beautiful Soup uses a plug-in parser to parse a (possibly invalid) XML
-or HTML document into a tree representation. The parser does the work
-of building a parse tree, and Beautiful Soup provides provides methods
-and Pythonic idioms that make it easy to navigate, search, and modify
-the parse tree.
+Beautiful Soup uses a pluggable XML or HTML parser to parse a
+(possibly invalid) document into a tree representation. Beautiful Soup
+provides provides methods and Pythonic idioms that make it easy to
+navigate, search, and modify the parse tree.
Beautiful Soup works with Python 2.6 and up. It works better if lxml
-or html5lib is installed.
+and/or html5lib is installed.
For more than you ever wanted to know about Beautiful Soup, see the
documentation:
-http://www.crummy.com/software/BeautifulSoup/documentation.html
+http://www.crummy.com/software/BeautifulSoup/bs4/doc/
"""
__author__ = "Leonard Richardson (leonardr@segfault.org)"
-__version__ = "4.0.0b5"
+__version__ = "4.0.0b6"
__copyright__ = "Copyright (c) 2004-2012 Leonard Richardson"
__license__ = "MIT"
diff --git a/bs4/doc/source/index.rst b/bs4/doc/source/index.rst
index 8b7f1e4..8328ed7 100644
--- a/bs4/doc/source/index.rst
+++ b/bs4/doc/source/index.rst
@@ -2503,8 +2503,9 @@ Miscellaneous
contains a single tag B and nothing else, then A.string is the same as
B.string. (Previously, it was None.)
-`Multi-valued attributes`_ like ``class`` are presented as lists. This
-may affect the way you search by CSS class.
+`Multi-valued attributes`_ like ``class`` have lists of strings as
+their values, not strings. This may affect the way you search by CSS
+class.
If you pass one of the ``find*`` methods both :ref:`text <text>` `and`
a tag-specific argument like :ref:`name <name>`, Beautiful Soup will