Searched refs:capture_locals (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Lib/ |
D | traceback.py | 323 capture_locals=False): argument 355 if capture_locals: 469 lookup_lines=True, capture_locals=False, _seen=None): argument 487 capture_locals=capture_locals, 499 capture_locals=capture_locals, 510 capture_locals=capture_locals)
|
/external/python/cpython3/Lib/test/ |
D | test_traceback.py | 999 s = traceback.StackSummary.extract(iter([(f, 6)]), capture_locals=True) 1014 traceback.walk_stack(None), capture_locals=True, limit=1) 1052 capture_locals=True) 1054 e, limit=1, lookup_lines=False, capture_locals=True) 1154 exc3 = traceback.TracebackException(*exc_info, capture_locals=True) 1159 exc5 = traceback.TracebackException(*exc_info, limit=-1, capture_locals=True) 1164 exc7 = traceback.TracebackException(*exc_info, limit=-2, capture_locals=True) 1229 Exception, e, tb, capture_locals=True)
|
/external/python/cpython3/Doc/library/ |
D | traceback.rst | 194 …ception(exc_type, exc_value, exc_traceback, *, limit=None, lookup_lines=True, capture_locals=False) 197 *capture_locals* are as for the :class:`StackSummary` class. 241 .. classmethod:: from_exception(exc, *, limit=None, lookup_lines=True, capture_locals=False) 244 *capture_locals* are as for the :class:`StackSummary` class. 286 .. classmethod:: extract(frame_gen, *, limit=None, lookup_lines=True, capture_locals=False) 296 may not actually get formatted). If *capture_locals* is ``True`` the
|
/external/python/cpython3/Lib/unittest/ |
D | result.py | 186 exctype, value, tb, limit=length, capture_locals=self.tb_locals)
|
/external/python/cpython3/Lib/unittest/test/ |
D | test_result.py | 14 self.capture_locals = kwargs.get('capture_locals', False) 17 if self.capture_locals:
|