summaryrefslogtreecommitdiff
path: root/sphinx/ext/autodoc/directive.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-01-08 14:17:08 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-01-08 14:17:08 +0900
commit1c0a5ee55d45b1332e04011e0d5cc3c7c1c44a6c (patch)
tree5a3c16262c051372933c1a1612cbc1ff8dd77ac3 /sphinx/ext/autodoc/directive.py
parent9a6ad38e2d23a7285d15d967e9d1eb5dcd2e2cfb (diff)
parent06ebc3f8645c5b40fa507e340f582ed7384024c7 (diff)
downloadsphinx-git-1c0a5ee55d45b1332e04011e0d5cc3c7c1c44a6c.tar.gz
Merge branch 'master' into refactor_AutoDirective
Diffstat (limited to 'sphinx/ext/autodoc/directive.py')
-rw-r--r--sphinx/ext/autodoc/directive.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sphinx/ext/autodoc/directive.py b/sphinx/ext/autodoc/directive.py
index 077ee5dfd..5ea4a9b58 100644
--- a/sphinx/ext/autodoc/directive.py
+++ b/sphinx/ext/autodoc/directive.py
@@ -31,7 +31,8 @@ logger = logging.getLogger(__name__)
# common option names for autodoc directives
AUTODOC_DEFAULT_OPTIONS = ['members', 'undoc-members', 'inherited-members',
- 'show-inheritance', 'private-members', 'special-members']
+ 'show-inheritance', 'private-members', 'special-members',
+ 'ignore-module-all']
class DummyOptionSpec(object):