Home
last modified time | relevance | path

Searched refs:tb_lasti (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython3/Python/clinic/
Dtraceback.c.h13 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/
Dtraceback.h16 int tb_lasti; member
/external/python/cpython2/Python/
Dtraceback.c17 {"tb_lasti", T_INT, OFF(tb_lasti), READONLY},
98 tb->tb_lasti = frame->f_lasti; in newtracebackobject()
/external/python/cpython3/Include/
Dtraceback.h18 int tb_lasti; member
/external/python/cpython3/Python/
Dtraceback.c53 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/
Dtest_raise.py244 self.assertIsInstance(tb.tb_lasti, int)
278 self.assertEqual(tb.tb_lasti, 1)
Dtest_dis.py584 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/
Ddis.py87 disassemble(tb.tb_frame.f_code, tb.tb_lasti, file=file)
498 return cls(tb.tb_frame.f_code, current_offset=tb.tb_lasti)
Dpdb.py213 lineno = lasti2lineno(tb.tb_frame.f_code, tb.tb_lasti)
/external/python/cpython2/Lib/
Ddis.py59 disassemble(tb.tb_frame.f_code, tb.tb_lasti)
/external/python/cpython3/Doc/library/
Dtypes.rst218 .. class:: TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno)
Dinspect.rst104 | | tb_lasti | index of last attempted |
/external/python/cpython2/Doc/library/
Dinspect.rst120 | | tb_lasti | index of last attempted | |
/external/python/cpython2/Doc/reference/
Ddatamodel.rst1051 single: tb_lasti (traceback attribute)
1058 :attr:`tb_lasti` indicates the precise instruction. The line number and last
/external/python/cpython3/Doc/reference/
Ddatamodel.rst1045 single: tb_lasti (traceback attribute)
1051 :attr:`tb_lasti` indicates the precise instruction.
/external/python/cpython2/Misc/
Dcheatsheet1313 tb_lasti (int, R/O): precise instruction (index into bytecode)