| Server IP : 68.178.172.28 / Your IP : 216.73.216.152 Web Server : Apache System : Linux 28.172.178.68.host.secureserver.net 4.18.0-553.94.1.el8_10.x86_64 #1 SMP Mon Jan 19 05:45:41 EST 2026 x86_64 User : kiskarnal ( 1003) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/lib64/python2.7/site-packages/lxml/ |
Upload File : |
�
�'�Yc @ s� d Z d d l m Z d d l m Z d d l m Z m Z d d l m Z m Z d e j
f d � � YZ d � Z d e f d
� � YZ
d e f d � � YZ d
� Z d S( sI
SAX-based adapter to copy trees from/to the Python standard library.
Use the `ElementTreeContentHandler` class to build an ElementTree from
SAX events.
Use the `ElementTreeProducer` class or the `saxify()` function to fire
the SAX events of an ElementTree against a SAX ContentHandler.
See http://codespeak.net/lxml/sax.html
i����( t ContentHandler( t etree( t ElementTreet
SubElement( t Commentt ProcessingInstructiont SaxErrorc B s e Z d Z RS( s General SAX error.
( t __name__t
__module__t __doc__( ( ( s. /usr/lib64/python2.7/site-packages/lxml/sax.pyR s c C s8 | d d k r* t | d j d d � � Sd | f Sd S( Ni t {i t }( t tuplet splitt None( t tag( ( s. /usr/lib64/python2.7/site-packages/lxml/sax.pyt _getNsTag s t ElementTreeContentHandlerc B s� e Z d Z d d � Z d � Z e e d e j �Z d � Z d � Z d � Z
d � Z d � Z d � Z
d d
� Z d � Z d � Z d d
� Z d � Z d � Z e Z RS( s/ Build an lxml ElementTree from SAX events.
c C sr t j | � d | _ g | _ g | _ d | _ i d g d 6| _ i | _ | d k re t j
} n | | _ d S( N( R t __init__R t _roott _root_siblingst _element_stackt _default_nst _ns_mappingt
_new_mappingsR t Elementt _makeelement( t selft makeelement( ( s. /usr/lib64/python2.7/site-packages/lxml/sax.pyR "