]> granicus.if.org Git - python/commitdiff
Fix test failures (--without-doc-strings).
authorStefan Krah <skrah@bytereef.org>
Sat, 18 Jan 2014 22:18:39 +0000 (23:18 +0100)
committerStefan Krah <skrah@bytereef.org>
Sat, 18 Jan 2014 22:18:39 +0000 (23:18 +0100)
Lib/test/test_pydoc.py

index 43548af48e1eb6d56f4a5c9a43fa6bb577cbd487..105116a5c00b48a85e93646be7564f6d495a204b 100644 (file)
@@ -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],