Searched refs:tb_lineno (Results 1 – 14 of 14) sorted by relevance
/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 | 1001 lineno = frame.tb_lineno
|
/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/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/cpython2/Lib/idlelib/ |
D | StackViewer.py | 34 stack.append((tb.tb_frame, tb.tb_lineno))
|
/external/libmojo/third_party/jinja2/ |
D | debug.py | 182 lineno = template.get_corresponding_lineno(tb.tb_lineno)
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 1050 single: tb_lineno (traceback attribute) 1057 level; :attr:`tb_lineno` gives the line number where the exception occurred;
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 1312 tb_lineno (int, R/O): line number where the exception occurred
|
D | HISTORY | 12177 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.
|