Home
last modified time | relevance | path

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

/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.py1001 lineno = frame.tb_lineno
/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/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/cpython2/Lib/idlelib/
DStackViewer.py34 stack.append((tb.tb_frame, tb.tb_lineno))
/external/libmojo/third_party/jinja2/
Ddebug.py182 lineno = template.get_corresponding_lineno(tb.tb_lineno)
/external/python/cpython2/Doc/reference/
Ddatamodel.rst1050 single: tb_lineno (traceback attribute)
1057 level; :attr:`tb_lineno` gives the line number where the exception occurred;
/external/python/cpython2/Misc/
Dcheatsheet1312 tb_lineno (int, R/O): line number where the exception occurred
DHISTORY12177 Also rewrite tb_lineno() to be compatible with JPython (and not
13059 - The traceback.py module has a new function tb_lineno() by Marc-Andre
13063 on or off, the module itself uses tb_lineno() unconditionally.