From: Brett Cannon Date: Mon, 30 Mar 2015 19:35:37 +0000 (-0400) Subject: Ignore .rst files in the venv directory. X-Git-Tag: v3.5.0a4~252 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9b16666f2f4a9ee1a586f70772cad6ed80419ec5;p=thirdparty%2FPython%2Fcpython.git Ignore .rst files in the venv directory. --- diff --git a/Doc/conf.py b/Doc/conf.py index f803de238e7c..28dd80f8590f 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 # -----------------------