Fix test_inspect.py data to match recent change to inspect_fodder.py (r77942).

This commit is contained in:
Mark Dickinson 2010-02-03 16:50:14 +00:00
parent b8c7b017e2
commit c68e9f0d20
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ class TestInterpreterStack(IsTestBase):
self.assertEqual(git.tr[1][1:], (modfile, 9, 'spam',
[' eggs(b + d, c + f)\n'], 0))
self.assertEqual(git.tr[2][1:], (modfile, 18, 'eggs',
[' q = y / 0\n'], 0))
[' q = y // 0\n'], 0))
def test_frame(self):
args, varargs, varkw, locals = inspect.getargvalues(mod.fr)