(self)
| 3453 | self.assertIsInstance(s, traceback.StackSummary) |
| 3454 | |
| 3455 | def test_extract_stack_limit(self): |
| 3456 | s = traceback.StackSummary.extract(traceback.walk_stack(None), limit=5) |
| 3457 | self.assertEqual(len(s), 5) |
| 3458 | |
| 3459 | def test_extract_stack_lookup_lines(self): |
| 3460 | linecache.clearcache() |
nothing calls this directly
no test coverage detected