Searched refs:all_frames (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_tracemalloc.py | 617 self.assertEqual(f.all_frames, False) 624 self.assertEqual(f.all_frames, True) 627 … f = tracemalloc.Filter(inclusive=False, filename_pattern="test.py", lineno=123, all_frames=True) 631 self.assertEqual(f.all_frames, True) 776 f = tracemalloc.Filter(True, "b.py", all_frames=True) 782 f = tracemalloc.Filter(True, "b.py", all_frames=False) 788 f = tracemalloc.Filter(False, "b.py", all_frames=True) 794 f = tracemalloc.Filter(False, "b.py", all_frames=False) 800 f = tracemalloc.Filter(False, "<unknown>", all_frames=False) 806 f = tracemalloc.Filter(True, "<unknown>", all_frames=True) [all …]
|
/external/python/cpython3/Lib/ |
D | tracemalloc.py | 329 lineno=None, all_frames=False, domain=None): argument 334 self.all_frames = all_frames 354 if self.all_frames:
|
/external/python/cpython3/Doc/library/ |
D | tracemalloc.rst | 387 .. class:: Filter(inclusive: bool, filename_pattern: str, lineno: int=None, all_frames: bool=False,… 437 .. attribute:: all_frames 439 If *all_frames* is ``True``, all frames of the traceback are checked. If 440 *all_frames* is ``False``, only the most recent frame is checked.
|