Slide 62
Slide 62 text
def debug():
import sys
tb = sys.exc_info()[2]
idx = 0
while tb:
idx += 1
frame = tb.tb_frame
code = frame.f_code
print({
'line': tb.tb_lineno,
'locals': frame.f_locals,
'function': code.co_name,
})
tb = tb.tb_next
try:
get_random_thing(10)
except Exception:
debug()
{'function': ‘',
'line': 31,
'locals': {'things': [0, 1, 2]}}
{'function': 'get_random_thing',
'line': 7,
'locals': {'n': 4}}
{'function': 'get_thing',
'line': 11,
'locals': {'index': 4}}