Lines Matching refs:StackSummary
3189 s = traceback.StackSummary.extract(traceback.walk_stack(None))
3190 self.assertIsInstance(s, traceback.StackSummary)
3193 s = traceback.StackSummary.extract(traceback.walk_stack(None), limit=5)
3201 s = traceback.StackSummary.extract(iter([(f, 6)]), lookup_lines=True)
3209 s = traceback.StackSummary.extract(iter([(f, 6)]), lookup_lines=False)
3215 s = traceback.StackSummary.from_list([('foo.py', 1, 'fred', 'line')])
3221 s = traceback.StackSummary.from_list([('foo.py', 1, 'fred', 'line')])
3223 s2 = traceback.StackSummary.from_list(s)
3231 s = traceback.StackSummary.from_list([('foo.py', 1, 'fred', 'line')])
3240 s = traceback.StackSummary.extract(iter([(f, 6)]), capture_locals=True)
3247 s = traceback.StackSummary.extract(iter([(f, 6)]))
3254 return traceback.StackSummary.extract(
3267 class CustomStackSummary(traceback.StackSummary):
3292 class Skip_G(traceback.StackSummary):
3330 self.assertIsInstance(s, traceback.StackSummary)
3354 expected_stack = traceback.StackSummary.extract(
3389 self.expected_stack = traceback.StackSummary.extract(
3417 expected_stack = traceback.StackSummary.extract(
3440 expected_stack = traceback.StackSummary.extract(
3486 expected_stack = traceback.StackSummary.extract(
3509 expected_stack = traceback.StackSummary.extract(
3631 expected_stack = traceback.StackSummary.extract(