diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2016-06-05 05:22:26 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2016-06-05 05:22:26 (GMT) |
commit | 889f914edb4253bdf4b475ed594199d67fcc08b7 (patch) | |
tree | a081fd9e0cec43e5a154e32346d296de1a795874 /Doc/conf.py | |
parent | 03fe0027fb97727abb2d3d1468f727a62dc34298 (diff) | |
download | cpython-889f914edb4253bdf4b475ed594199d67fcc08b7.zip cpython-889f914edb4253bdf4b475ed594199d67fcc08b7.tar.gz cpython-889f914edb4253bdf4b475ed594199d67fcc08b7.tar.bz2 |
issue27202 - Fix the mistake in changesets 70af472451cb (3.5) and 2bb806539ca6 (3.6)
exclude_patterns in Sphinx conf.py will exclude the .rsts from the build. It
was incorrect exclude 2.x rsts in that. This fix contributed again Jelle
Zijlstra, excludes doctests in whatsnew/2.7.rst from being exercised by using
doctests skip option.
Diffstat (limited to 'Doc/conf.py')
-rw-r--r-- | Doc/conf.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index 114f9b6..d6f20ba 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -36,9 +36,8 @@ highlight_language = 'python3' # Require Sphinx 1.2 for build. needs_sphinx = '1.2' -# Ignore any .rst files in the venv/ directory, and don't attempt to run tests -# in the 2.x release notes. -exclude_patterns = ['venv/*', 'whatsnew/2.*.rst'] +# Ignore any .rst files in the venv/ directory. +exclude_patterns = ['venv/*'] # Options for HTML output |