summaryrefslogtreecommitdiffstats
path: root/Lib/xml/sax/_exceptions.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2000-10-09 16:45:54 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2000-10-09 16:45:54 (GMT)
commit04f4943d132d0d5e9829923706a2cb07a2b0ae9f (patch)
tree26f51d8e66bb89d40b277ebf017c8ddfdcd778f8 /Lib/xml/sax/_exceptions.py
parent3383792c74ad6cb8b71bf54985cd54582657561e (diff)
downloadcpython-04f4943d132d0d5e9829923706a2cb07a2b0ae9f.zip
cpython-04f4943d132d0d5e9829923706a2cb07a2b0ae9f.tar.gz
cpython-04f4943d132d0d5e9829923706a2cb07a2b0ae9f.tar.bz2
_exceptions: Format a missing system id as <unknown>.
expatreader: Use the error handler instead of raising exception directly.
Diffstat (limited to 'Lib/xml/sax/_exceptions.py')
-rw-r--r--Lib/xml/sax/_exceptions.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/Lib/xml/sax/_exceptions.py b/Lib/xml/sax/_exceptions.py
index 1804f3f..88ec8ca 100644
--- a/Lib/xml/sax/_exceptions.py
+++ b/Lib/xml/sax/_exceptions.py
@@ -79,10 +79,11 @@ class SAXParseException(SAXException):
def __str__(self):
"Create a string representation of the exception."
- return "%s at %s:%d:%d" % (self._msg,
- self.getSystemId(),
- self.getLineNumber(),
- self.getColumnNumber())
+ sysid = self.getSystemId()
+ if sysid is None:
+ sysid = "<unknown>"
+ return "%s:%d:%d: %s" % (sysid, self.getLineNumber(),
+ self.getColumnNumber(), self._msg)
# ===== SAXNOTRECOGNIZEDEXCEPTION =====