summaryrefslogtreecommitdiff
path: root/doc/conf.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-01-06 15:48:39 +0100
committerGeorg Brandl <georg@python.org>2010-01-06 15:48:39 +0100
commitd8ecadd172a7b6bb42540da4543301279846d521 (patch)
tree0f9148fe0ec29595e684696ae45f9f2818598448 /doc/conf.py
parent818b990fcd3fbcfddb5d8fb84e5f23ffc75ed1ed (diff)
downloadsphinx-d8ecadd172a7b6bb42540da4543301279846d521.tar.gz
Add new universal config value ``exclude_patterns``, with glob-style exclude patterns.
This makes the old ``unused_docs``, ``exclude_trees`` and ``exclude_dirnames`` obsolete.
Diffstat (limited to 'doc/conf.py')
-rw-r--r--doc/conf.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/conf.py b/doc/conf.py
index ce87c54e..feda5fd1 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -18,6 +18,8 @@ source_suffix = '.rst'
# The master toctree document.
master_doc = 'contents'
+exclude_patterns = ['_build']
+
# General substitutions.
project = 'Sphinx'
copyright = '2007-2010, Georg Brandl'