Searched refs:f_lineno (Results 1 – 25 of 41) sorted by relevance
12
/third_party/python/Lib/ |
D | bdb.py | 212 return frame.f_lineno >= self.stoplineno 226 lineno = frame.f_lineno 297 lineno = frame.f_lineno + 1 538 stack.append((f, f.f_lineno)) 786 if b.line != frame.f_lineno: 800 b.func_first_executable_line = frame.f_lineno 802 if b.func_first_executable_line != frame.f_lineno: 868 line = linecache.getline(fn, frame.f_lineno, frame.f_globals) 869 print('+++', fn, frame.f_lineno, name, ':', line.strip())
|
D | pdb.py | 258 or frame.f_lineno <= 0): 990 if lineno <= self.curframe.f_lineno: 1088 self.curframe.f_lineno = arg 1245 first = max(1, self.curframe.f_lineno - 5) 1297 current_lineno = frame.f_lineno
|
D | trace.py | 555 lineno = frame.f_lineno 570 lineno = frame.f_lineno 582 lineno = frame.f_lineno
|
D | warnings.py | 318 lineno = frame.f_lineno
|
D | traceback.py | 318 yield f, f.f_lineno
|
/third_party/python/Lib/test/ |
D | test_sys_settrace.py | 317 self.events.append((frame.f_lineno, event)) 323 self.events.append((frame.f_lineno, event)) 1223 frame.f_lineno == f.__code__.co_firstlineno + 2): 1286 self.firstLine = frame.f_lineno - 1 1288 frame.f_lineno == self.firstLine + self.jumpFrom): 1296 frame.f_lineno = self.firstLine + self.jumpTo 1298 frame.f_lineno = self.jumpTo 1314 previous_frame.f_lineno = previous_frame.f_lineno
|
D | test_frame.py | 101 lines.append(f.f_lineno-f.f_code.co_firstlineno) 183 del f.f_lineno
|
D | test_bdb.py | 323 lineno = self.frame.f_lineno
|
D | test_exceptions.py | 2444 None if frame.f_lineno is None else 2445 frame.f_lineno-frame.f_code.co_firstlineno
|
D | test_tracemalloc.py | 27 lineno = frame.f_lineno + lineno_delta
|
D | test_compile.py | 860 self.assertEqual(frame.f_lineno-frame.f_code.co_firstlineno, lastline)
|
/third_party/python/Include/cpython/ |
D | frameobject.h | 45 int f_lineno; /* Current line number. Only valid if non-zero */ member
|
/third_party/python/Lib/asyncio/ |
D | base_tasks.py | 64 lineno = f.f_lineno
|
D | coroutines.py | 262 lineno = coro_frame.f_lineno
|
/third_party/python/Objects/ |
D | frameobject.c | 45 if (f->f_lineno != 0) { in PyFrame_GetLineNumber() 46 return f->f_lineno; in PyFrame_GetLineNumber() 493 f->f_lineno = 0; in frame_setlineno() 854 f->f_lineno = 0; in _PyFrame_New_NoTrack()
|
D | lnotab_notes.txt | 217 Why do we set f_lineno when tracing, and only just before calling the trace 224 f_lineno when tracing, one can report a line number different from that
|
/third_party/python/Lib/idlelib/ |
D | debugger.py | 50 lineno = frame.f_lineno 264 lineno = frame.f_lineno
|
/third_party/python/Tools/gdb/ |
D | libpython.py | 869 self.f_lineno = int_from_int(self.field('f_lineno')) 947 return self.f_lineno
|
/third_party/python/Python/ |
D | traceback.c | 283 frame->f_lineno = lineno; in _PyTraceback_Add()
|
D | ceval.c | 5460 frame->f_lineno = frame->f_code->co_firstlineno; in call_trace() 5464 …frame->f_lineno = _PyCode_CheckLineNumber(frame->f_lasti*sizeof(_Py_CODEUNIT), &trace_info->bounds… in call_trace() 5467 frame->f_lineno = 0; in call_trace() 6472 if (line != frame->f_lineno || frame->f_lasti < instr_prev) { in maybe_dtrace_line() 6474 frame->f_lineno = line; in maybe_dtrace_line()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.7.0b3.rst | 71 Fixed jumping out of "with" block by setting f_lineno.
|
D | 3.10.0a5.rst | 132 frame.f_lineno is correct even if frame.f_trace is set to True
|
D | 3.10.0a3.rst | 73 PEP 626: After a return, the f_lineno attribute of a frame is always the 218 Improved accuracy of line tracing events and f_lineno attribute of Frame
|
D | 3.9.0b1.rst | 173 Setting frame.f_lineno is now robust w.r.t. changes in the
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_events.py | 2226 create_lineno = sys._getframe().f_lineno + 1 2253 lineno = sys._getframe(1).f_lineno - 1 2369 create_lineno = sys._getframe().f_lineno + 1
|
12