mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
bpo-26502: Implement FrameSummary.__len__() (GH-8632)
This commit is contained in:
parent
0e0bc4e221
commit
9797b7ae44
3 changed files with 10 additions and 0 deletions
|
@ -868,6 +868,7 @@ class MiscTracebackCases(unittest.TestCase):
|
|||
(__file__, lineno+2, 'test_extract_stack', 'result = extract()'),
|
||||
(__file__, lineno+1, 'extract', 'return traceback.extract_stack()'),
|
||||
])
|
||||
self.assertEqual(len(result[0]), 4)
|
||||
|
||||
|
||||
class TestFrame(unittest.TestCase):
|
||||
|
@ -900,6 +901,10 @@ class TestFrame(unittest.TestCase):
|
|||
f = traceback.FrameSummary("f", 1, "dummy", line="line")
|
||||
self.assertEqual("line", f.line)
|
||||
|
||||
def test_len(self):
|
||||
f = traceback.FrameSummary("f", 1, "dummy", line="line")
|
||||
self.assertEqual(len(f), 4)
|
||||
|
||||
|
||||
class TestStack(unittest.TestCase):
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue