mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-16 00:37:10 +08:00
Removed SAX classes from xml/__init__.pyi (#1299)
- Removed class definitions from `xml/__init__.pyi` as they were merely outdated duplicates of the definitions from the correct file (`xml/sax/__init__.pyi`) - Left file intact as it is necessary for the module
This commit is contained in:
committed by
Guido van Rossum
parent
028f2dd0a4
commit
efec7d67e8
@@ -1,16 +0,0 @@
|
||||
class SAXException(Exception):
|
||||
def __init__(self, msg, exception=None): ...
|
||||
def getMessage(self): ...
|
||||
def getException(self): ...
|
||||
def __getitem__(self, ix): ...
|
||||
|
||||
class SAXParseException(SAXException):
|
||||
def __init__(self, msg, exception, locator): ...
|
||||
def getColumnNumber(self): ...
|
||||
def getLineNumber(self): ...
|
||||
def getPublicId(self): ...
|
||||
def getSystemId(self): ...
|
||||
|
||||
class SAXNotRecognizedException(SAXException): ...
|
||||
class SAXNotSupportedException(SAXException): ...
|
||||
class SAXReaderNotAvailable(SAXNotSupportedException): ...
|
||||
|
||||
Reference in New Issue
Block a user