Home
last modified time | relevance | path

Searched refs:tb_lineno (Results 1 – 25 of 31) sorted by relevance

12

/external/python/cpython3/Python/clinic/
Dtraceback.c.h13 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/
Dtraceback.py62 lineno = tb.tb_lineno
96 lineno = tb.tb_lineno
315 def tb_lineno(tb): function
320 return tb.tb_lineno
Dasyncore.py565 str(tb.tb_lineno)
Dbdb.py353 stack.append((t.tb_frame, t.tb_lineno))
Dthreading.py830 exc_tb.tb_lineno,
Dinspect.py1011 lineno = frame.tb_lineno
/external/python/cpython3/Python/
Dtraceback.c54 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/
Dtraceback.c18 {"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/
Dtraceback.rst133 .. 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
Dinspect.rst123 | | tb_lineno | current line number in | |
/external/python/cpython2/Include/
Dtraceback.h17 int tb_lineno; member
/external/python/cpython3/Include/
Dtraceback.h19 int tb_lineno; member
/external/python/cpython3/Lib/test/
Dtest_raise.py245 self.assertIsInstance(tb.tb_lineno, int)
279 self.assertEqual(tb.tb_lineno, 2)
/external/python/cpython3/Lib/idlelib/
Dstackviewer.py35 stack.append((tb.tb_frame, tb.tb_lineno))
/external/python/cpython2/Lib/idlelib/
DStackViewer.py34 stack.append((tb.tb_frame, tb.tb_lineno))
/external/python/cpython3/Lib/
Dpdb.py151 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)
Dtraceback.py309 yield tb.tb_frame, tb.tb_lineno
Dasyncore.py544 str(tb.tb_lineno)
Dbdb.py526 stack.append((t.tb_frame, t.tb_lineno))
Dthreading.py943 exc_tb.tb_lineno,
Dinspect.py1453 lineno = frame.tb_lineno
/external/python/cpython3/Doc/library/
Dtraceback.rst404 print("*** tb_lineno:", exc_traceback.tb_lineno)
445 *** tb_lineno: 10
Dtypes.rst218 .. class:: TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno)
/external/libchrome/third_party/jinja2/
Ddebug.py182 lineno = template.get_corresponding_lineno(tb.tb_lineno)
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_tasks.py2048 tb_lineno = sys._getframe().f_lineno + 2
2065 re.escape(tb_filename), tb_lineno))

12