/external/python/cpython3/Python/clinic/ |
D | traceback.c.h | 13 int tb_lasti, int tb_lineno); 24 int tb_lineno; 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/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 | 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}, 555 last_line == -1 || tb->tb_lineno != last_line || in tb_printinternal() 561 last_line = tb->tb_lineno; in tb_printinternal() 569 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/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/cpython2/Include/ |
D | traceback.h | 17 int tb_lineno; member
|
/external/python/cpython3/Include/ |
D | traceback.h | 19 int tb_lineno; member
|
/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/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 | 151 self.tb_lineno = {} 204 self.tb_lineno.clear() 214 self.tb_lineno[tb.tb_frame] = lineno 1284 exc_lineno = self.tb_lineno.get(frame, -1)
|
D | traceback.py | 309 yield tb.tb_frame, tb.tb_lineno
|
D | asyncore.py | 544 str(tb.tb_lineno)
|
D | bdb.py | 526 stack.append((t.tb_frame, t.tb_lineno))
|
D | threading.py | 943 exc_tb.tb_lineno,
|
D | inspect.py | 1453 lineno = frame.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 | 218 .. class:: TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno)
|
/external/libchrome/third_party/jinja2/ |
D | debug.py | 182 lineno = template.get_corresponding_lineno(tb.tb_lineno)
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_tasks.py | 2048 tb_lineno = sys._getframe().f_lineno + 2 2065 re.escape(tb_filename), tb_lineno))
|