summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pydoc.py
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-02-23 00:24:49 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-02-23 00:24:49 (GMT)
commitf28fd24c36310541a1f3ec74e92e8d38629dd5d8 (patch)
treeca85998492ba91f8874ba63fecd77397f65ad3d6 /Lib/test/test_pydoc.py
parent87bcb243acfd758b3e91e194bf8f1198ae68a792 (diff)
downloadcpython-f28fd24c36310541a1f3ec74e92e8d38629dd5d8.zip
cpython-f28fd24c36310541a1f3ec74e92e8d38629dd5d8.tar.gz
cpython-f28fd24c36310541a1f3ec74e92e8d38629dd5d8.tar.bz2
Issue 6292: for the moment at least, the test suite passes if run
with -OO. Tests requiring docstrings are skipped. Patch by Brian Curtin, thanks to Matias Torchinsky for helping review and improve the patch.
Diffstat (limited to 'Lib/test/test_pydoc.py')
-rw-r--r--Lib/test/test_pydoc.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py
index 5f2d3b3..43ad2c1 100644
--- a/Lib/test/test_pydoc.py
+++ b/Lib/test/test_pydoc.py
@@ -219,6 +219,8 @@ def print_diffs(text1, text2):
class PyDocDocTest(unittest.TestCase):
+ @unittest.skipIf(sys.flags.optimize >= 2,
+ "Docstrings are omitted with -O2 and above")
def test_html_doc(self):
result, doc_loc = get_pydoc_html(pydoc_mod)
mod_file = inspect.getabsfile(pydoc_mod)
@@ -232,6 +234,8 @@ class PyDocDocTest(unittest.TestCase):
print_diffs(expected_html, result)
self.fail("outputs are not equal, see diff above")
+ @unittest.skipIf(sys.flags.optimize >= 2,
+ "Docstrings are omitted with -O2 and above")
def test_text_doc(self):
result, doc_loc = get_pydoc_text(pydoc_mod)
expected_text = expected_text_pattern % \