[Python-Dev] XML runtime errors?

Fredrik Lundh Fredrik Lundh" <effbot@telia.com
Tue, 12 Sep 2000 21:40:04 +0200


stoopid question: why the heck is xmllib using
"RuntimeError" to flag XML syntax errors?

raise RuntimeError, 'Syntax error at line %d: %s' % (self.lineno, message)

what's wrong with "SyntaxError"?

</F>