bs4: update to 4.11 (#7785)

Co-authored-by: hauntsaninja <>
This commit is contained in:
Shantanu
2022-05-06 11:54:50 -07:00
committed by GitHub
parent 5f557176b4
commit e8b361983f
4 changed files with 60 additions and 2 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ from _typeshed import Self, SupportsRead
from collections.abc import Sequence
from typing import Any
from .builder import TreeBuilder
from .builder import ParserRejectedMarkup as ParserRejectedMarkup, TreeBuilder, XMLParsedAsHTMLWarning as XMLParsedAsHTMLWarning
from .element import (
CData as CData,
Comment as Comment,
@@ -64,3 +64,5 @@ class HTMLTreeBuilder(TreeBuilder):
class ParserRejectedMarkup(Exception):
def __init__(self, message_or_exception) -> None: ...
class XMLParsedAsHTMLWarning(UserWarning): ...