| test_traceback.py | 665 def extract(**kwargs): function in function:LimitTests.test_extract_stack 673 nolim = extract() 675 self.assertEqual(extract(limit=2), nolim[-2:]) 676 assertEqualExcept(extract(limit=100), nolim[-100:], -5-1) 677 self.assertEqual(extract(limit=-2), nolim[:2]) 678 assertEqualExcept(extract(limit=-100), nolim[:100], len(nolim)-5-1) 679 self.assertEqual(extract(limit=0), []) 681 assertEqualExcept(extract(), nolim, -5-1) 683 self.assertEqual(extract(), nolim[-2:]) 684 self.assertEqual(extract(limit=3), nolim[-3:] 696 def extract(**kwargs): function in function:LimitTests.test_extract_tb 725 def extract(**kwargs): function in function:LimitTests.test_format_exception 778 def extract(): function in function:MiscTracebackCases.test_extract_stack [all...] |