diff options
author | Georg Brandl <georg@python.org> | 2014-01-19 17:46:06 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-01-19 17:46:06 +0100 |
commit | 2a8cf7c7781a4554adbcb4bae6bec2a40bfc156d (patch) | |
tree | b8af16b65c565b458bc483d14a0d6498802d78f3 /sphinx/config.py | |
parent | a003cdbd2fcf73e24670568facda9bd6c5a73e76 (diff) | |
download | sphinx-2a8cf7c7781a4554adbcb4bae6bec2a40bfc156d.tar.gz |
The deprecated config values ``exclude_trees``, ``exclude_dirnames`` and ``unused_docs`` have been removed.
Diffstat (limited to 'sphinx/config.py')
-rw-r--r-- | sphinx/config.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sphinx/config.py b/sphinx/config.py index df74e914..ace5f2a6 100644 --- a/sphinx/config.py +++ b/sphinx/config.py @@ -51,10 +51,6 @@ class Config(object): source_suffix = ('.rst', 'env'), source_encoding = ('utf-8-sig', 'env'), exclude_patterns = ([], 'env'), - # the next three are all deprecated now - unused_docs = ([], 'env'), - exclude_trees = ([], 'env'), - exclude_dirnames = ([], 'env'), default_role = (None, 'env'), add_function_parentheses = (True, 'env'), add_module_names = (True, 'env'), |