Ie, what I want would be:
try:
print inExceptClause()
1/0
except Exception:
print inExceptClause()
print inExceptClause()
... which would print out:
False
True
False
|
I think you're going about this the wrong way. Your "use case" seems like that you can call a function from multiple points in your code, with it sometimes being called from within an exception handler. Within that function, you want to know whether or not an exception has been thrown, right? The point is, you don't want to have that kind of logic in a function that has (or should have) no knowledge about the calling code... as ideally, most of your functions will not have. That said, you might want to execute that function, but only partly. So I'd suggest one of two options:
Now, this isn't really an answer to your question, but I have the feeling you are looking at your problem at the wrong angle... hence the above suggestion. |
|||
|
See also these questions: Python 3 traceback fails when no exception is active |
||||
|
|
def inExceptClause(answer=False): return answer, called empty outside of exceptions and withTrueinside? But guessing you want a program-related indication :) – RocketDonkey Oct 19 '12 at 3:40exceptwhich inside anotherexcept, whicn is inside a thirdexcept, etc.. The closest thing I can think of istraceback.extract_stack(), but it doesn't give any direct information about excepts. – jsalonen Oct 19 '12 at 7:15