# encoding: utf-8
# module lxml.etree
# from D:\project\A_Board\.venv\Lib\site-packages\lxml\etree.cp313-win_amd64.pyd
# by generator 1.147
""" The ``lxml.etree`` module implements the extended ElementTree API for XML. """

# imports
import builtins as __builtins__ # <module 'builtins' (built-in)>
import abc as __abc
import typing as __typing


from .XMLSyntaxError import XMLSyntaxError

from .AssertionError import AssertionError

class XMLSyntaxAssertionError(XMLSyntaxError, AssertionError):
    """
    An XMLSyntaxError that additionally inherits from AssertionError for
        ElementTree / backwards compatibility reasons.
    
        This class may get replaced by a plain XMLSyntaxError in a future version.
    """
    def __init__(self, *args, **kwargs): # real signature unknown
        pass


