From efec7d67e862785508b3952409a6523632fd7a39 Mon Sep 17 00:00:00 2001 From: Emily Morehouse Date: Mon, 22 May 2017 16:08:08 -0700 Subject: [PATCH] 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 --- stdlib/2and3/xml/__init__.pyi | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/stdlib/2and3/xml/__init__.pyi b/stdlib/2and3/xml/__init__.pyi index d8e2500a8..e69de29bb 100644 --- a/stdlib/2and3/xml/__init__.pyi +++ b/stdlib/2and3/xml/__init__.pyi @@ -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): ...