The documentation for the raise statement with no arguments says
If no expressions are present, raise re-raises the last exception that was active in the current scope.
I used to think that meant that the current function had to be executing an except
clause. After reading this question and experimenting a little, I think it means that any function on the stack has to be executing an except
clause, but I'm not sure. Also, I've realized I have no idea how the stack trace works with a no-arg raise:
def f(): try: raise Exception except: g() def g(): raise f()
produces
Traceback (most recent call last): File "foo", line 10, in <module> f() File "foo", line 5, in f g() File "foo", line 3, in f raise Exception Exception
That doesn't look like the stack at the time of the initial raise, or the stack at the time of the re-raise, or the concatenation of both stacks, or anything I can make sense of.
Am I right about a no-arg raise looking for any function on the stack executing an except
clause? Also, how does the stack trace work on a reraise?
Only an exception handler (or a function that a handler calls, directly or indirectly) can use raise without any expressions.
The RAISE statement stops normal execution of a PL/SQL block or subprogram and transfers control to an exception handler. RAISE statements can raise predefined exceptions, such as ZERO_DIVIDE or NO_DATA_FOUND , or user-defined exceptions whose names you decide.
Raising an exception is a technique for interrupting the normal flow of execution in a program, signaling that some exceptional circumstance has arisen, and returning directly to an enclosing part of the program that was designated to react to that circumstance.
Python raise Keyword is used to raise exceptions or errors. The raise keyword raises an error and stops the control flow of the program. It is used to bring up the current exception in an exception handler so that it can be handled further up the call stack.
When you raise
without arguments, the interpreter looks for the last exception raised and handled. It then acts the same as if you used raise
with the most recent exception type, value and traceback.
This is stored in the interpreter state for the current thread, and the same information can be retrieved using sys.exc_info()
. By 'handled' I mean that an except clause caught the exception. Quoting the try
statement documentation:
Before an except clause’s suite is executed, details about the exception are assigned to three variables in the
sys
module:sys.exc_type
receives the object identifying the exception;sys.exc_value
receives the exception’s parameter;sys.exc_traceback
receives a traceback object (see section The standard type hierarchy identifying the point in the program where the exception occurred. These details are also available through thesys.exc_info()
function, which returns a tuple(exc_type, exc_value, exc_traceback)
.
See the implemenation notes in the Python evaluation loop (C code), specifically:
The second bullet was for backwards compatibility: it was (and is) common to have a function that is called when an exception is caught, and to have that function access the caught exception via sys.exc_ZZZ. (Example: traceback.print_exc()).
The traceback reflects how you came to the re-raise accurately. It is the current stack (line 10 calling f()
, line 5 calling g()
) plus the original location of the exception raised: line 3.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With