summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-03-03 20:39:00 (GMT)
committerGeorg Brandl <georg@python.org>2008-03-03 20:39:00 (GMT)
commit26bc177fe6b1710cc306adee3be17145db4686ca (patch)
tree035a85b79bf171c51e0b17c234a4692c1b185bc4
parent3e9d66fee1ba491c2643ae961ffc19c5b6c7d089 (diff)
downloadcpython-26bc177fe6b1710cc306adee3be17145db4686ca.zip
cpython-26bc177fe6b1710cc306adee3be17145db4686ca.tar.gz
cpython-26bc177fe6b1710cc306adee3be17145db4686ca.tar.bz2
15 -> 16, the 2nd
-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 06f6b94..ef84f44 100644
--- a/Lib/test/test_inspect.py
+++ b/Lib/test/test_inspect.py
@@ -53,7 +53,7 @@ class TestPredicates(IsTestBase):
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)