Lines Matching refs:StackSummary
948 s = traceback.StackSummary.extract(traceback.walk_stack(None))
949 self.assertIsInstance(s, traceback.StackSummary)
952 s = traceback.StackSummary.extract(traceback.walk_stack(None), limit=5)
960 s = traceback.StackSummary.extract(iter([(f, 6)]), lookup_lines=True)
968 s = traceback.StackSummary.extract(iter([(f, 6)]), lookup_lines=False)
974 s = traceback.StackSummary.from_list([('foo.py', 1, 'fred', 'line')])
980 s = traceback.StackSummary.from_list([('foo.py', 1, 'fred', 'line')])
982 s2 = traceback.StackSummary.from_list(s)
990 s = traceback.StackSummary.from_list([('foo.py', 1, 'fred', 'line')])
999 s = traceback.StackSummary.extract(iter([(f, 6)]), capture_locals=True)
1006 s = traceback.StackSummary.extract(iter([(f, 6)]))
1013 return traceback.StackSummary.extract(
1033 expected_stack = traceback.StackSummary.extract(
1050 self.expected_stack = traceback.StackSummary.extract(
1076 expected_stack = traceback.StackSummary.extract(
1097 expected_stack = traceback.StackSummary.extract(
1207 expected_stack = traceback.StackSummary.extract(