Current Path: > > usr > lib64 > python2.7 > xml > > > sax
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__init__.py | File | 3618 bytes | April 10 2024 04:58:35. | |
__init__.pyc | File | 3745 bytes | April 10 2024 04:58:46. | |
__init__.pyo | File | 3745 bytes | April 10 2024 04:58:46. | |
_exceptions.py | File | 4785 bytes | April 10 2024 04:58:35. | |
_exceptions.pyc | File | 6169 bytes | April 10 2024 04:58:46. | |
_exceptions.pyo | File | 6169 bytes | April 10 2024 04:58:46. | |
expatreader.py | File | 15812 bytes | April 10 2024 04:58:35. | |
expatreader.pyc | File | 15173 bytes | April 10 2024 04:58:46. | |
expatreader.pyo | File | 15173 bytes | April 10 2024 04:58:46. | |
handler.py | File | 13921 bytes | April 10 2024 04:58:35. | |
handler.pyc | File | 13028 bytes | April 10 2024 04:58:46. | |
handler.pyo | File | 13028 bytes | April 10 2024 04:58:46. | |
saxutils.py | File | 11556 bytes | April 10 2024 04:58:35. | |
saxutils.pyc | File | 14801 bytes | April 10 2024 04:58:46. | |
saxutils.pyo | File | 14801 bytes | April 10 2024 04:58:46. | |
xmlreader.py | File | 12632 bytes | April 10 2024 04:58:35. | |
xmlreader.pyc | File | 19222 bytes | April 10 2024 04:58:46. | |
xmlreader.pyo | File | 19222 bytes | April 10 2024 04:58:46. |
� {fc @ s� d Z d Z d d d � � YZ d d d � � YZ d d d � � YZ d d d � � YZ d Z d Z d Z d Z d Z d Z e e e e e e g Z d Z d Z d Z d Z d Z d Z e e e e e e g Z d S( s0 This module contains the core classes of version 2.0 of SAX for Python. This file provides only default classes with absolutely minimum functionality, from which drivers and applications can be subclassed. Many of these classes are empty and are included only as documentation of the interfaces. $Id$ s 2.0betat ErrorHandlerc B s) e Z d Z d � Z d � Z d � Z RS( s� Basic interface for SAX error handlers. If you create an object that implements this interface, then register the object with your XMLReader, the parser will call the methods in your object to report all warnings and errors. There are three levels of errors available: warnings, (possibly) recoverable errors, and unrecoverable errors. All methods take a SAXParseException as the only parameter.c C s | � d S( s Handle a recoverable error.N( ( t selft exception( ( s'