Searched refs:lookup_lines (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Lib/ |
D | traceback.py | 322 def extract(klass, frame_gen, *, limit=None, lookup_lines=True, argument 364 if lookup_lines: 469 lookup_lines=True, capture_locals=False, _seen=None): argument 486 lookup_lines=False, 498 lookup_lines=False, 509 walk_tb(exc_traceback), limit=limit, lookup_lines=lookup_lines, 522 if lookup_lines:
|
/external/python/cpython3/Lib/asyncio/ |
D | format_helpers.py | 74 lookup_lines=False)
|
/external/python/cpython3/Doc/library/ |
D | traceback.rst | 194 .. class:: TracebackException(exc_type, exc_value, exc_traceback, *, limit=None, lookup_lines=True,… 196 Capture an exception for later rendering. *limit*, *lookup_lines* and 241 .. classmethod:: from_exception(exc, *, limit=None, lookup_lines=True, capture_locals=False) 243 Capture an exception for later rendering. *limit*, *lookup_lines* and 286 .. classmethod:: extract(frame_gen, *, limit=None, lookup_lines=True, capture_locals=False) 293 If *lookup_lines* is ``False``, the returned :class:`FrameSummary`
|
/external/python/cpython3/Lib/test/ |
D | test_traceback.py | 960 s = traceback.StackSummary.extract(iter([(f, 6)]), lookup_lines=True) 968 s = traceback.StackSummary.extract(iter([(f, 6)]), lookup_lines=False) 1051 traceback.walk_tb(exc_info[2]), limit=1, lookup_lines=False, 1054 e, limit=1, lookup_lines=False, capture_locals=True) 1217 exc = traceback.TracebackException(Exception, e, tb, lookup_lines=False)
|