Age | Commit message (Collapse) | Author |
|
BeautifulSoup constructor which a caller may want to filter out. [bug=1873787]
|
|
Chvátal. [bug=1872279]
|
|
|
|
|
|
|
|
Script tags, which are ignored by methods like get_text(). This
feature is not supported by the html5lib treebuilder. [bug=1868861]
|
|
|
|
|
|
|
|
|
|
non-ASCII characters as markup into Beautiful Soup, on a system that
allows Unicode filenames. [bug=1866717]
|
|
rather than PageElement itself.
|
|
|
|
Darcet.
|
|
|
|
|
|
check whether you've already called decompose() on a Tag or
NavigableString.
|
|
decomposed.[bug=1857767]
|
|
paragraph is being omitted.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
not uppercase. [bug=1848401]
|
|
|
|
|
|
|
|
Watson. [bug=1847592]
|
|
|
|
|
|
Python >= 3.7 issues a deprecation warning when using collections.Callable
rather than collections.abc.Callable. Most of Beautiful Soup deals with
this by using a conditional import, but the automatic Python 3 conversion
apparently translates `callable(obj)` to `isinstance(obj,
collections.Callable)` which trips this deprecation warning.
`isinstance(obj, Callable)` works fine in Python 2 as well as 3, so just use
it directly.
|
|
|
|
|
|
|
|
|
|
on Python 3. [bug=1843545]
|
|
Unicode document. Raise an explanatory exception when the underlying parser
completely rejects the incoming markup. [bug=1838877]
|
|
|
|
lxml 4.4. Patch by Isaac Muse. [bug=1840141]
|
|
|
|
NavigableString.
|