Kaydet (Commit) 1e8659b9 authored tarafından Neal Norwitz's avatar Neal Norwitz

Don't use a string exception since it's deprecated

üst 57071ce5
......@@ -64,7 +64,7 @@ _srcfile = os.path.normcase(_srcfile)
def currentframe():
"""Return the frame object for the caller's stack frame."""
try:
raise 'catch me'
raise Exception
except:
return sys.exc_traceback.tb_frame.f_back
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment