[Python-checkins] r61210 - python/trunk/Lib/test/test_inspect.py

georg.brandl python-checkins at python.org
Mon Mar 3 21:39:00 CET 2008


Author: georg.brandl
Date: Mon Mar  3 21:39:00 2008
New Revision: 61210

Modified:
   python/trunk/Lib/test/test_inspect.py
Log:
15 -> 16, the 2nd


Modified: python/trunk/Lib/test/test_inspect.py
==============================================================================
--- python/trunk/Lib/test/test_inspect.py	(original)
+++ python/trunk/Lib/test/test_inspect.py	Mon Mar  3 21:39:00 2008
@@ -53,7 +53,7 @@
     def test_sixteen(self):
         count = len(filter(lambda x:x.startswith('is'), dir(inspect)))
         # This test is here for remember you to update Doc/library/inspect.rst
-        # which claims there are 15 such functions
+        # which claims there are 16 such functions
         expected = 16
         err_msg = "There are %d (not %d) is* functions" % (count, expected)
         self.assertEqual(count, expected, err_msg)


More information about the Python-checkins mailing list