(self)
| 3375 | self.assertIsInstance(s, traceback.StackSummary) |
| 3376 | |
| 3377 | def test_extract_stack_limit(self): |
| 3378 | s = traceback.StackSummary.extract(traceback.walk_stack(None), limit=5) |
| 3379 | self.assertEqual(len(s), 5) |
| 3380 | |
| 3381 | def test_extract_stack_lookup_lines(self): |
| 3382 | linecache.clearcache() |
nothing calls this directly
no test coverage detected