diff options
author | Brett Cannon <brett@python.org> | 2015-03-30 19:35:37 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2015-03-30 19:35:37 (GMT) |
commit | 9b16666f2f4a9ee1a586f70772cad6ed80419ec5 (patch) | |
tree | a536806eebc74a1874fd5375960b5c8aad1be93c /Doc/conf.py | |
parent | 6aa446cf039f9533a5ecf2400bf060db4313a417 (diff) | |
download | cpython-9b16666f2f4a9ee1a586f70772cad6ed80419ec5.zip cpython-9b16666f2f4a9ee1a586f70772cad6ed80419ec5.tar.gz cpython-9b16666f2f4a9ee1a586f70772cad6ed80419ec5.tar.bz2 |
Ignore .rst files in the venv directory.
Diffstat (limited to 'Doc/conf.py')
-rw-r--r-- | Doc/conf.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index f803de2..28dd80f 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -36,6 +36,9 @@ highlight_language = 'python3' # Require Sphinx 1.2 for build. needs_sphinx = '1.2' +# Ignore any .rst files in the venv/ directory. +exclude_patterns = ['venv/*'] + # Options for HTML output # ----------------------- |