# 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 .XMLParser import XMLParser

class XMLPullParser(XMLParser):
    """
    XMLPullParser(self, events=None, *, tag=None, **kwargs)
    
        XML parser that collects parse events in an iterator.
    
        The collected events are the same as for iterparse(), but the
        parser itself is non-blocking in the sense that it receives
        data chunks incrementally through its .feed() method, instead
        of reading them directly from a file(-like) object all by itself.
    
        By default, it collects Element end events.  To change that,
        pass any subset of the available events into the ``events``
        argument: ``'start'``, ``'end'``, ``'start-ns'``,
        ``'end-ns'``, ``'comment'``, ``'pi'``.
    
        To support loading external dependencies relative to the input
        source, you can pass the ``base_url``.
    """
    def read_events(self, *args, **kwargs): # real signature unknown
        pass

    def __init__(self, events=None, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        pass

    @staticmethod # known case of __new__
    def __new__(*args, **kwargs): # real signature unknown
        """ Create and return a new object.  See help(type) for accurate signature. """
        pass

    __pyx_vtable__ = None # (!) real value is '<capsule object NULL at 0x000001F0E7C60EF0>'


