/external/python/cpython3/Python/clinic/ |
D | traceback.c.h | 13 int tb_lasti, int tb_lineno); 27 int tb_lineno; in tb_new() local 53 tb_lineno = _PyLong_AsInt(fastargs[3]); in tb_new() 54 if (tb_lineno == -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/cpython2/Lib/ |
D | traceback.py | 62 lineno = tb.tb_lineno 96 lineno = tb.tb_lineno 315 def tb_lineno(tb): function 320 return tb.tb_lineno
|
D | asyncore.py | 565 str(tb.tb_lineno)
|
D | bdb.py | 353 stack.append((t.tb_frame, t.tb_lineno))
|
D | threading.py | 830 exc_tb.tb_lineno,
|
D | inspect.py | 1011 lineno = frame.tb_lineno
|
/external/python/cpython3/Python/ |
D | traceback.c | 53 tb->tb_lineno = lineno; in tb_create_raw() 73 int tb_lasti, int tb_lineno) in tb_new_impl() argument 85 tb_lineno); in tb_new_impl() 152 {"tb_lineno", T_INT, OFF(tb_lineno), READONLY}, 566 last_line == -1 || tb->tb_lineno != last_line || in tb_printinternal() 572 last_line = tb->tb_lineno; in tb_printinternal() 578 err = tb_displayline(f, code->co_filename, tb->tb_lineno, in tb_printinternal()
|
/external/python/cpython2/Python/ |
D | traceback.c | 18 {"tb_lineno", T_INT, OFF(tb_lineno), READONLY}, 99 tb->tb_lineno = PyFrame_GetLineNumber(frame); in newtracebackobject() 246 tb->tb_lineno, in tb_printinternal()
|
/external/python/cpython3/Include/cpython/ |
D | traceback.h | 14 int tb_lineno; member
|
/external/python/cpython2/Include/ |
D | traceback.h | 17 int tb_lineno; member
|
/external/python/cpython2/Doc/library/ |
D | traceback.rst | 133 .. function:: tb_lineno(tb) 137 the :option:`-O` flag was passed to Python the ``tb.tb_lineno`` was not 201 print "*** tb_lineno:", exc_traceback.tb_lineno 240 *** tb_lineno: 10
|
D | inspect.rst | 123 | | tb_lineno | current line number in | |
|
/external/python/cpython3/Lib/test/ |
D | test_raise.py | 245 self.assertIsInstance(tb.tb_lineno, int) 279 self.assertEqual(tb.tb_lineno, 2)
|
/external/python/jinja/src/jinja2/ |
D | debug.py | 52 lineno = template.get_corresponding_lineno(tb.tb_lineno)
|
/external/python/cpython3/Lib/idlelib/ |
D | stackviewer.py | 35 stack.append((tb.tb_frame, tb.tb_lineno))
|
/external/python/cpython2/Lib/idlelib/ |
D | StackViewer.py | 34 stack.append((tb.tb_frame, tb.tb_lineno))
|
/external/python/cpython3/Lib/ |
D | pdb.py | 154 self.tb_lineno = {} 205 self.tb_lineno.clear() 215 self.tb_lineno[tb.tb_frame] = lineno 1288 exc_lineno = self.tb_lineno.get(frame, -1)
|
D | traceback.py | 312 yield tb.tb_frame, tb.tb_lineno
|
D | asyncore.py | 542 str(tb.tb_lineno)
|
D | bdb.py | 528 stack.append((t.tb_frame, t.tb_lineno))
|
/external/libchrome/third_party/jinja2/ |
D | debug.py | 182 lineno = template.get_corresponding_lineno(tb.tb_lineno)
|
/external/python/cpython3/Doc/library/ |
D | traceback.rst | 404 print("*** tb_lineno:", exc_traceback.tb_lineno) 445 *** tb_lineno: 10
|
D | types.rst | 264 .. class:: TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno)
|
/external/llvm-project/lldb/examples/python/ |
D | pytracer.py | 16 return self.t.tb_lineno if self.t is not None else None
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_tasks.py | 2425 tb_lineno = sys._getframe().f_lineno + 2 2442 re.escape(tb_filename), tb_lineno))
|