mirror of https://github.com/python/cpython
Fix test_inspect.py data to match recent change to inspect_fodder.py (r77942).
This commit is contained in:
parent
b8c7b017e2
commit
c68e9f0d20
|
@ -167,7 +167,7 @@ class TestInterpreterStack(IsTestBase):
|
||||||
self.assertEqual(git.tr[1][1:], (modfile, 9, 'spam',
|
self.assertEqual(git.tr[1][1:], (modfile, 9, 'spam',
|
||||||
[' eggs(b + d, c + f)\n'], 0))
|
[' eggs(b + d, c + f)\n'], 0))
|
||||||
self.assertEqual(git.tr[2][1:], (modfile, 18, 'eggs',
|
self.assertEqual(git.tr[2][1:], (modfile, 18, 'eggs',
|
||||||
[' q = y / 0\n'], 0))
|
[' q = y // 0\n'], 0))
|
||||||
|
|
||||||
def test_frame(self):
|
def test_frame(self):
|
||||||
args, varargs, varkw, locals = inspect.getargvalues(mod.fr)
|
args, varargs, varkw, locals = inspect.getargvalues(mod.fr)
|
||||||
|
|
Loading…
Reference in New Issue