[Python-checkins] cpython: Ignore .rst files in the venv directory.

brett.cannon python-checkins at python.org
Mon Mar 30 21:35:44 CEST 2015


https://hg.python.org/cpython/rev/aef4371ec800
changeset:   95304:aef4371ec800
user:        Brett Cannon <brett at python.org>
date:        Mon Mar 30 15:35:37 2015 -0400
summary:
  Ignore .rst files in the venv directory.

files:
  Doc/conf.py |  3 +++
  1 files changed, 3 insertions(+), 0 deletions(-)


diff --git a/Doc/conf.py b/Doc/conf.py
--- a/Doc/conf.py
+++ b/Doc/conf.py
@@ -36,6 +36,9 @@
 # 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
 # -----------------------

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


More information about the Python-checkins mailing list