[Python-3000-checkins] r55544 - python/branches/p3yk/Lib/test/test_inspect.py

guido.van.rossum python-3000-checkins at python.org
Thu May 24 04:23:55 CEST 2007


Author: guido.van.rossum
Date: Thu May 24 04:23:53 2007
New Revision: 55544

Modified:
   python/branches/p3yk/Lib/test/test_inspect.py
Log:
Fix test_inspect.  It seems my previous "fix" was due to a stale .pyc file.


Modified: python/branches/p3yk/Lib/test/test_inspect.py
==============================================================================
--- python/branches/p3yk/Lib/test/test_inspect.py	(original)
+++ python/branches/p3yk/Lib/test/test_inspect.py	Thu May 24 04:23:53 2007
@@ -218,7 +218,7 @@
     fodderFile = mod2
 
     def test_wrapped_decorator(self):
-        self.assertSourceEqual(mod2.wrapped, 14, 17)
+        self.assertSourceEqual(mod2.wrapped, 16, 17)
 
     def test_replacing_decorator(self):
         self.assertSourceEqual(mod2.gone, 9, 10)


More information about the Python-3000-checkins mailing list