diff options
Diffstat (limited to 'Lib/xml/sax/_exceptions.py')
-rw-r--r-- | Lib/xml/sax/_exceptions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/xml/sax/_exceptions.py b/Lib/xml/sax/_exceptions.py index 88ec8ca5983..1ea582fb999 100644 --- a/Lib/xml/sax/_exceptions.py +++ b/Lib/xml/sax/_exceptions.py @@ -42,7 +42,7 @@ class SAXException(Exception): # ===== SAXPARSEEXCEPTION ===== -class SAXParseException(SAXException): +class SAXParseException(SAXException): """Encapsulate an XML parse error or warning. This exception will include information for locating the error in @@ -62,7 +62,7 @@ class SAXParseException(SAXException): def getColumnNumber(self): """The column number of the end of the text where the exception - occurred.""" + occurred.""" return self._locator.getColumnNumber() def getLineNumber(self): |