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); 26 int tb_lasti; in tb_new() local 44 tb_lasti = _PyLong_AsInt(fastargs[2]); in tb_new() 45 if (tb_lasti == -1 && PyErr_Occurred()) { in tb_new() 57 return_value = tb_new_impl(type, tb_next, tb_frame, tb_lasti, tb_lineno); in tb_new()
|
/external/python/cpython3/Include/cpython/ |
D | traceback.h | 13 int tb_lasti; member
|
/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/Python/ |
D | traceback.c | 52 tb->tb_lasti = lasti; in tb_create_raw() 73 int tb_lasti, int tb_lineno) in tb_new_impl() argument 84 return tb_create_raw((PyTracebackObject *)tb_next, tb_frame, tb_lasti, in tb_new_impl() 151 {"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 | 651 tb_dis = self.get_disassemble_as_string(tb.tb_frame.f_code, tb.tb_lasti) 1198 self.assertEqual(b.current_offset, tb.tb_lasti)
|
/external/python/cpython3/Lib/ |
D | dis.py | 96 disassemble(tb.tb_frame.f_code, tb.tb_lasti, file=file) 516 return cls(tb.tb_frame.f_code, current_offset=tb.tb_lasti)
|
D | pdb.py | 214 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 | 264 .. class:: TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno)
|
D | inspect.rst | 110 | | 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 | 1081 single: tb_lasti (traceback attribute) 1087 :attr:`tb_lasti` indicates the precise instruction.
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 1313 tb_lasti (int, R/O): precise instruction (index into bytecode)
|