[Python-checkins] cpython: Fix test failures (--without-doc-strings).

stefan.krah python-checkins at python.org
Sat Jan 18 23:19:12 CET 2014


http://hg.python.org/cpython/rev/f8845f2d4c83
changeset:   88559:f8845f2d4c83
user:        Stefan Krah <skrah at bytereef.org>
date:        Sat Jan 18 23:18:39 2014 +0100
summary:
  Fix test failures (--without-doc-strings).

files:
  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
--- a/Lib/test/test_pydoc.py
+++ b/Lib/test/test_pydoc.py
@@ -21,7 +21,7 @@
 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 @@
             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],

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list