vote up 3 vote down star

Is there any way in Python to determine what exceptions a (built-in) function might raise? For example, the documentation (http://docs.python.org/lib/built-in-funcs.html) for the built-in int(s) says nothing about the fact that it might raise a ValueError if s is not a validly formatted int.


This is a duplicate of http://stackoverflow.com/questions/58119/does-recompile-or-any-given-python-library-call-throw-an-exception

flag
Hey, someone reopen this. It is not a duplicate. – epochwolf Sep 29 '08 at 23:52

closed as exact duplicate by Kristopher Johnson Sep 29 '08 at 21:25

2 Answers

vote up 0 vote down

I don't know of any definitive source, apart from the source.

link|flag
vote up 5 vote down

The only way to tell what exceptions something can raise is by looking at the documentation. The fact that the int() documentation doesn't say it may raise ValueError is a bug in the documentation, but easily explained by ValueError being exactly for that purpose, and that being something "everybody knows".

To belabour the point, though, documentation is the only way to tell what exceptions you should care about; in fact, any function can potentially raise any exception, even if it's just because signals may arrive and signal handlers may raise exceptions. You should not anticipate or handle those errors, however; you should just handle the errors you expect.

link|flag

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