summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_inspect.py
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-07-01 01:44:52 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-07-01 01:44:52 (GMT)
commit22f68d5dd68459ad2ad28e4b25b9e9267e0761b3 (patch)
tree964dea729579efc84ef14d985180170e98d04e48 /Lib/test/test_inspect.py
parent8a8f453c5a6d6549f4db826300a0817c7af09ccd (diff)
downloadcpython-22f68d5dd68459ad2ad28e4b25b9e9267e0761b3.zip
cpython-22f68d5dd68459ad2ad28e4b25b9e9267e0761b3.tar.gz
cpython-22f68d5dd68459ad2ad28e4b25b9e9267e0761b3.tar.bz2
Issue #24541: Update comment in test_inspect.test_eightteen
Diffstat (limited to 'Lib/test/test_inspect.py')
-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 9307e21..1bf4576 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)