Searched refs:last_tb (Results 1 - 2 of 2) sorted by relevance
/third_party/python/Lib/ |
H A D | code.py | 139 sys.last_type, sys.last_value, last_tb = ei = sys.exc_info() 140 sys.last_traceback = last_tb 142 lines = traceback.format_exception(ei[0], ei[1], last_tb.tb_next) 148 sys.excepthook(ei[0], ei[1], last_tb) 150 last_tb = ei = None
|
/third_party/python/Modules/ |
H A D | _lsprof.c | 353 PyObject *last_type, *last_value, *last_tb; in ptrace_enter_call() local 354 PyErr_Fetch(&last_type, &last_value, &last_tb); in ptrace_enter_call() 379 PyErr_Restore(last_type, last_value, last_tb); in ptrace_enter_call()
|
Completed in 3 milliseconds