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);
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/
Dtraceback.h13 int tb_lasti; member
/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/Python/
Dtraceback.c52 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/
Dtest_raise.py244 self.assertIsInstance(tb.tb_lasti, int)
278 self.assertEqual(tb.tb_lasti, 1)
Dtest_dis.py651 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/
Ddis.py96 disassemble(tb.tb_frame.f_code, tb.tb_lasti, file=file)
516 return cls(tb.tb_frame.f_code, current_offset=tb.tb_lasti)
Dpdb.py214 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.rst264 .. class:: TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno)
Dinspect.rst110 | | 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.rst1081 single: tb_lasti (traceback attribute)
1087 :attr:`tb_lasti` indicates the precise instruction.
/external/python/cpython2/Misc/
Dcheatsheet1313 tb_lasti (int, R/O): precise instruction (index into bytecode)