Home
last modified time | relevance | path

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

/third_party/python/Python/clinic/
Dtraceback.c.h13 int tb_lasti, int tb_lineno);
26 int tb_lasti; in tb_new() local
39 tb_lasti = _PyLong_AsInt(fastargs[2]); in tb_new()
40 if (tb_lasti == -1 && PyErr_Occurred()) { in tb_new()
47 return_value = tb_new_impl(type, tb_next, tb_frame, tb_lasti, tb_lineno); in tb_new()
/third_party/python/Include/cpython/
Dtraceback.h9 int tb_lasti; member
/third_party/python/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},
/third_party/python/Lib/test/
Dtest_raise.py244 self.assertIsInstance(tb.tb_lasti, int)
278 self.assertEqual(tb.tb_lasti, 1)
Dtest_dis.py678 tb_dis = self.get_disassemble_as_string(tb.tb_frame.f_code, tb.tb_lasti)
1242 self.assertEqual(b.current_offset, tb.tb_lasti)
/third_party/python/Lib/
Ddis.py96 disassemble(tb.tb_frame.f_code, tb.tb_lasti, file=file)
503 return cls(tb.tb_frame.f_code, current_offset=tb.tb_lasti)
Dpdb.py214 lineno = lasti2lineno(tb.tb_frame.f_code, tb.tb_lasti)
/third_party/python/Doc/library/
Dtypes.rst321 .. class:: TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno)
Dinspect.rst112 | | tb_lasti | index of last attempted |
/third_party/python/Doc/reference/
Ddatamodel.rst1116 single: tb_lasti (traceback attribute)
1122 :attr:`tb_lasti` indicates the precise instruction.