Home
last modified time | relevance | path

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

12

/external/python/cpython3/Python/clinic/
Dtraceback.c.h13 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/
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.c53 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/
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/cpython3/Include/cpython/
Dtraceback.h14 int tb_lineno; member
/external/python/cpython2/Include/
Dtraceback.h17 int tb_lineno; member
/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/cpython3/Lib/test/
Dtest_raise.py245 self.assertIsInstance(tb.tb_lineno, int)
279 self.assertEqual(tb.tb_lineno, 2)
/external/python/jinja/src/jinja2/
Ddebug.py52 lineno = template.get_corresponding_lineno(tb.tb_lineno)
/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.py154 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)
Dtraceback.py312 yield tb.tb_frame, tb.tb_lineno
Dasyncore.py542 str(tb.tb_lineno)
Dbdb.py528 stack.append((t.tb_frame, t.tb_lineno))
/external/libchrome/third_party/jinja2/
Ddebug.py182 lineno = template.get_corresponding_lineno(tb.tb_lineno)
/external/python/cpython3/Doc/library/
Dtraceback.rst404 print("*** tb_lineno:", exc_traceback.tb_lineno)
445 *** tb_lineno: 10
Dtypes.rst264 .. class:: TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno)
/external/llvm-project/lldb/examples/python/
Dpytracer.py16 return self.t.tb_lineno if self.t is not None else None
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_tasks.py2425 tb_lineno = sys._getframe().f_lineno + 2
2442 re.escape(tb_filename), tb_lineno))

12