Home
last modified time | relevance | path

Searched refs:capture_locals (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Lib/
Dtraceback.py320 capture_locals=False): argument
352 if capture_locals:
466 lookup_lines=True, capture_locals=False, _seen=None): argument
484 capture_locals=capture_locals,
496 capture_locals=capture_locals,
508 capture_locals=capture_locals)
/external/python/cpython3/Doc/library/
Dtraceback.rst194 …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/test/
Dtest_traceback.py974 s = traceback.StackSummary.extract(iter([(f, 6)]), capture_locals=True)
989 traceback.walk_stack(None), capture_locals=True, limit=1)
1027 capture_locals=True)
1029 e, limit=1, lookup_lines=False, capture_locals=True)
1133 Exception, e, tb, capture_locals=True)
/external/python/cpython3/Lib/unittest/
Dresult.py186 exctype, value, tb, limit=length, capture_locals=self.tb_locals)
/external/python/cpython3/Lib/unittest/test/
Dtest_result.py14 self.capture_locals = kwargs.get('capture_locals', False)
17 if self.capture_locals: