summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-02-03 16:50:14 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-02-03 16:50:14 (GMT)
commitc68e9f0d200751692b9f54db337b80a465667fae (patch)
treeeb45369b6ef4b844fab6429d517ab9be6d362d00 /Lib/test
parentb8c7b017e2a4e85979a79842a5ab99f5b12acaa8 (diff)
downloadcpython-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/test')
-rw-r--r--Lib/test/test_inspect.py2
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)