changeset: 96732:0b7c313851ca branch: 3.5 parent: 96730:f22a0358418e user: Yury Selivanov date: Tue Jun 30 21:18:27 2015 -0400 files: Lib/test/test_inspect.py description: Issue #24400: Fix failing unittest diff -r f22a0358418e -r 0b7c313851ca Lib/test/test_inspect.py --- a/Lib/test/test_inspect.py Tue Jun 30 18:25:36 2015 -0400 +++ b/Lib/test/test_inspect.py Tue Jun 30 21:18:27 2015 -0400 @@ -95,7 +95,7 @@ count = len([x for x in dir(inspect) if x.startswith('is')]) # This test is here for remember you to update Doc/library/inspect.rst # which claims there are 16 such functions - expected = 19 + expected = 18 err_msg = "There are %d (not %d) is* functions" % (count, expected) self.assertEqual(count, expected, err_msg)