# 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


class ElementTree(__abc.ABC, __typing.Generic):
    # no doc
    def __init__(self, *args, **kwargs): # real signature unknown
        pass

    @staticmethod # known case of __new__
    def __new__(*args, **kwargs): # real signature unknown
        """
        ElementTree(element=None, file=None, parser=None)
        
                ElementTree wrapper class.
        """
        pass

    __weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """list of weak references to the object"""


    _abc_impl = None # (!) real value is '<_abc._abc_data object at 0x000001F0E7CB0C80>'
    __abstractmethods__ = frozenset()
    __dict__ = None # (!) real value is "mappingproxy({'__module__': 'lxml.etree', '__orig_bases__': (<class 'abc.ABC'>, typing.Generic[~T]), '__new__': <staticmethod(<cyfunction ElementTree.__new__ at 0x000001F0E7C4FF40>)>, '__dict__': <attribute '__dict__' of 'ElementTree' objects>, '__weakref__': <attribute '__weakref__' of 'ElementTree' objects>, '__doc__': None, '__parameters__': (~T,), '__abstractmethods__': frozenset(), '_abc_impl': <_abc._abc_data object at 0x000001F0E7CB0C80>})"
    __orig_bases__ = (
        None, # (!) real value is "<class 'abc.ABC'>"
        typing.Generic[~T],
    )
    __parameters__ = (
        None, # (!) real value is '~T'
    )


