Searched refs:tb_lasti (Results 1 – 16 of 16) sorted by relevance
/external/python/cpython3/Python/clinic/ |
D | traceback.c.h | 13 int tb_lasti, int tb_lineno); 23 int tb_lasti; in tb_new() local 27 &tb_next, &PyFrame_Type, &tb_frame, &tb_lasti, &tb_lineno)) { in tb_new() 30 return_value = tb_new_impl(type, tb_next, tb_frame, tb_lasti, tb_lineno); in tb_new()
|
/external/python/cpython2/Include/ |
D | traceback.h | 16 int tb_lasti; member
|
/external/python/cpython2/Python/ |
D | traceback.c | 17 {"tb_lasti", T_INT, OFF(tb_lasti), READONLY}, 98 tb->tb_lasti = frame->f_lasti; in newtracebackobject()
|
/external/python/cpython3/Include/ |
D | traceback.h | 18 int tb_lasti; member
|
/external/python/cpython3/Python/ |
D | traceback.c | 53 tb->tb_lasti = lasti; in tb_create_raw() 74 int tb_lasti, int tb_lineno) in tb_new_impl() argument 85 return tb_create_raw((PyTracebackObject *)tb_next, tb_frame, tb_lasti, in tb_new_impl() 152 {"tb_lasti", T_INT, OFF(tb_lasti), READONLY},
|
/external/python/cpython3/Lib/test/ |
D | test_raise.py | 244 self.assertIsInstance(tb.tb_lasti, int) 278 self.assertEqual(tb.tb_lasti, 1)
|
D | test_dis.py | 584 tb_dis = self.get_disassemble_as_string(tb.tb_frame.f_code, tb.tb_lasti) 1102 self.assertEqual(b.current_offset, tb.tb_lasti)
|
/external/python/cpython3/Lib/ |
D | dis.py | 87 disassemble(tb.tb_frame.f_code, tb.tb_lasti, file=file) 498 return cls(tb.tb_frame.f_code, current_offset=tb.tb_lasti)
|
D | pdb.py | 213 lineno = lasti2lineno(tb.tb_frame.f_code, tb.tb_lasti)
|
/external/python/cpython2/Lib/ |
D | dis.py | 59 disassemble(tb.tb_frame.f_code, tb.tb_lasti)
|
/external/python/cpython3/Doc/library/ |
D | types.rst | 218 .. class:: TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno)
|
D | inspect.rst | 104 | | tb_lasti | index of last attempted |
|
/external/python/cpython2/Doc/library/ |
D | inspect.rst | 120 | | tb_lasti | index of last attempted | |
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 1051 single: tb_lasti (traceback attribute) 1058 :attr:`tb_lasti` indicates the precise instruction. The line number and last
|
/external/python/cpython3/Doc/reference/ |
D | datamodel.rst | 1045 single: tb_lasti (traceback attribute) 1051 :attr:`tb_lasti` indicates the precise instruction.
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 1313 tb_lasti (int, R/O): precise instruction (index into bytecode)
|