vote up 0 vote down star

Is there a way to halt the parsing from inside a content handler? Or is throwing an exception the only way?

Note that I am using xml.sax.parseString.

flag

1  
What's wrong with throwing an exception? I think this is a far better method than polluting the parseString signature with some kind of boolean "keep going if true" return status, or some global variable on the SAX parser that you set to false. Exceptions can be your friends, just learn to use them properly. – Paul McGuire Oct 6 at 2:03
I agree with Paul McGuire. It's not uncommon to use exceptions for flow control in Python. – Jonathan Feinberg Oct 6 at 2:55

1 Answer

vote up 0 vote down check

The complete API for Python's SAX content handlers is documented here: as you can see, the information flow is entirely one-way, parser to handler -- no way for the handler to supply info back to the parser (such as whether the parse should be terminated).

Therefore, as you had surmised and the commenters confirmed, "control-flow exceptions" are indeed the only way to achieve such a "premature termination". As the commenters mention, it's not too bad, after all.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.