summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-06-30 21:45:03 -0400
committerYury Selivanov <yselivanov@sprymix.com>2015-06-30 21:45:03 -0400
commit50d5516dce1a963a3708404db4801807fe7296d8 (patch)
tree277b0bd6ed8005ff42756cde2661b74c2bffb327
parent17314ab4dcde8a458feea93d39ecd4cec042cd1f (diff)
parent22f68d5dd68459ad2ad28e4b25b9e9267e0761b3 (diff)
downloadcpython-git-50d5516dce1a963a3708404db4801807fe7296d8.tar.gz
Merge 3.5
-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 9307e21386..1bf45763c8 100644
--- a/Lib/test/test_inspect.py
+++ b/Lib/test/test_inspect.py
@@ -94,7 +94,7 @@ class TestPredicates(IsTestBase):
def test_eightteen(self):
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
+ # which claims there are 18 such functions
expected = 18
err_msg = "There are %d (not %d) is* functions" % (count, expected)
self.assertEqual(count, expected, err_msg)