[Python-checkins] r77952 - python/trunk/Lib/test/test_inspect.py
mark.dickinson
python-checkins at python.org
Wed Feb 3 17:50:15 CET 2010
Author: mark.dickinson
Date: Wed Feb 3 17:50:14 2010
New Revision: 77952
Log:
Fix test_inspect.py data to match recent change to inspect_fodder.py (r77942).
Modified:
python/trunk/Lib/test/test_inspect.py
Modified: python/trunk/Lib/test/test_inspect.py
==============================================================================
--- python/trunk/Lib/test/test_inspect.py (original)
+++ python/trunk/Lib/test/test_inspect.py Wed Feb 3 17:50:14 2010
@@ -167,7 +167,7 @@
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)
More information about the Python-checkins
mailing list