diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-02-03 16:50:14 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-02-03 16:50:14 (GMT) |
commit | c68e9f0d200751692b9f54db337b80a465667fae (patch) | |
tree | eb45369b6ef4b844fab6429d517ab9be6d362d00 /Lib | |
parent | b8c7b017e2a4e85979a79842a5ab99f5b12acaa8 (diff) | |
download | cpython-c68e9f0d200751692b9f54db337b80a465667fae.zip cpython-c68e9f0d200751692b9f54db337b80a465667fae.tar.gz cpython-c68e9f0d200751692b9f54db337b80a465667fae.tar.bz2 |
Fix test_inspect.py data to match recent change to inspect_fodder.py (r77942).
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_inspect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py index 3666d61..be469cb 100644 --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -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) |