Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
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.
|
|
provide replacement classes to be instantiated for every tag ('tag_class')
or string ('string_class') encountered during parsing, rather than
using the default Tag and NavigableString objects.
|
|
the TreeBuilder used to build the original Tag. [bug=1838903]
|
|
|
|
during initial parsing. [bug=1838903]
|
|
|
|
|
|
html.parser.
|