diff options
author | Stefan Krah <skrah@bytereef.org> | 2014-01-18 22:18:39 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2014-01-18 22:18:39 (GMT) |
commit | 5de3278b23b9426b2a9123dbd3d73ec2b1f6d2ba (patch) | |
tree | d562161e8065440ae383d78c303911f40a288411 /Lib/test/test_pydoc.py | |
parent | bbf18bee3ca217e5eeb57470325d7c75f5e3457a (diff) | |
download | cpython-5de3278b23b9426b2a9123dbd3d73ec2b1f6d2ba.zip cpython-5de3278b23b9426b2a9123dbd3d73ec2b1f6d2ba.tar.gz cpython-5de3278b23b9426b2a9123dbd3d73ec2b1f6d2ba.tar.bz2 |
Fix test failures (--without-doc-strings).
Diffstat (limited to 'Lib/test/test_pydoc.py')
-rw-r--r-- | Lib/test/test_pydoc.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py index 43548af..105116a 100644 --- a/Lib/test/test_pydoc.py +++ b/Lib/test/test_pydoc.py @@ -21,7 +21,7 @@ from test.script_helper import assert_python_ok from test.support import ( TESTFN, rmtree, reap_children, reap_threads, captured_output, captured_stdout, - captured_stderr, unlink + captured_stderr, unlink, requires_docstrings ) from test import pydoc_mod @@ -689,6 +689,8 @@ class TestDescriptions(unittest.TestCase): self.assertIsNone(pydoc.locate(name)) self.assertRaises(ImportError, pydoc.render_doc, name) + @requires_docstrings + def test_builtin_signatures(self): # test producing signatures from builtins stat_sig = pydoc.render_doc(os.stat) self.assertEqual(pydoc.plain(stat_sig).splitlines()[2], |