Searched refs:lookup_lines (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Lib/ |
D | traceback.py | 339 def extract(klass, frame_gen, *, limit=None, lookup_lines=True, argument 381 if lookup_lines: 490 lookup_lines=True, capture_locals=False, compact=False, argument 503 walk_tb(exc_traceback), limit=limit, lookup_lines=lookup_lines, 520 if lookup_lines: 538 lookup_lines=lookup_lines, 557 lookup_lines=lookup_lines,
|
/third_party/python/Lib/asyncio/ |
D | format_helpers.py | 74 lookup_lines=False)
|
/third_party/python/Doc/library/ |
D | traceback.rst | 215 .. class:: TracebackException(exc_type, exc_value, exc_traceback, *, limit=None, lookup_lines=True,… 217 Capture an exception for later rendering. *limit*, *lookup_lines* and 267 .. classmethod:: from_exception(exc, *, limit=None, lookup_lines=True, capture_locals=False) 269 Capture an exception for later rendering. *limit*, *lookup_lines* and 315 .. classmethod:: extract(frame_gen, *, limit=None, lookup_lines=True, capture_locals=False) 322 If *lookup_lines* is ``False``, the returned :class:`FrameSummary`
|
/third_party/python/Lib/test/ |
D | test_traceback.py | 1095 s = traceback.StackSummary.extract(iter([(f, 6)]), lookup_lines=True) 1103 s = traceback.StackSummary.extract(iter([(f, 6)]), lookup_lines=False) 1186 traceback.walk_tb(exc_info[2]), limit=1, lookup_lines=False, 1189 e, limit=1, lookup_lines=False, capture_locals=True) 1417 exc = traceback.TracebackException(Exception, e, tb, lookup_lines=False)
|