Searched refs:tb_lineno (Results 1 – 19 of 19) sorted by relevance
/third_party/python/Python/clinic/ |
D | traceback.c.h | 13 int tb_lasti, int tb_lineno); 27 int tb_lineno; in tb_new() local 43 tb_lineno = _PyLong_AsInt(fastargs[3]); in tb_new() 44 if (tb_lineno == -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/Python/ |
D | traceback.c | 54 tb->tb_lineno = lineno; in tb_create_raw() 74 int tb_lasti, int tb_lineno) in tb_new_impl() argument 86 tb_lineno); in tb_new_impl() 153 {"tb_lineno", T_INT, OFF(tb_lineno), READONLY}, 567 last_line == -1 || tb->tb_lineno != last_line || in tb_printinternal() 573 last_line = tb->tb_lineno; in tb_printinternal() 579 err = tb_displayline(f, code->co_filename, tb->tb_lineno, in tb_printinternal()
|
/third_party/python/Include/cpython/ |
D | traceback.h | 10 int tb_lineno; member
|
/third_party/python/Lib/test/ |
D | test_raise.py | 245 self.assertIsInstance(tb.tb_lineno, int) 279 self.assertEqual(tb.tb_lineno, 2)
|
/third_party/jinja2/ |
D | debug.py | 58 lineno = template.get_corresponding_lineno(tb.tb_lineno)
|
/third_party/skia/third_party/externals/jinja2/ |
D | debug.py | 59 lineno = template.get_corresponding_lineno(tb.tb_lineno)
|
/third_party/python/Lib/ |
D | pdb.py | 154 self.tb_lineno = {} 205 self.tb_lineno.clear() 215 self.tb_lineno[tb.tb_frame] = lineno 1298 exc_lineno = self.tb_lineno.get(frame, -1)
|
D | asyncore.py | 549 str(tb.tb_lineno)
|
D | traceback.py | 329 yield tb.tb_frame, tb.tb_lineno
|
D | bdb.py | 545 stack.append((t.tb_frame, t.tb_lineno))
|
D | inspect.py | 1618 lineno = frame.tb_lineno
|
/third_party/python/Lib/idlelib/ |
D | stackviewer.py | 35 stack.append((tb.tb_frame, tb.tb_lineno))
|
/third_party/node/tools/inspector_protocol/jinja2/ |
D | debug.py | 182 lineno = template.get_corresponding_lineno(tb.tb_lineno)
|
/third_party/python/Doc/library/ |
D | traceback.rst | 433 print("*** tb_lineno:", exc_traceback.tb_lineno) 474 *** tb_lineno: 10
|
D | types.rst | 321 .. class:: TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno)
|
D | inspect.rst | 115 | | tb_lineno | current line number in |
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_tasks.py | 2481 tb_lineno = sys._getframe().f_lineno + 2 2498 re.escape(tb_filename), tb_lineno))
|
/third_party/python/Doc/reference/ |
D | datamodel.rst | 1115 single: tb_lineno (traceback attribute) 1121 :attr:`tb_lineno` gives the line number where the exception occurred;
|
/third_party/python/Misc/ |
D | HISTORY | 29556 Also rewrite tb_lineno() to be compatible with JPython (and not 30438 - The traceback.py module has a new function tb_lineno() by Marc-Andre 30442 on or off, the module itself uses tb_lineno() unconditionally.
|