diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2022-01-31 01:38:12 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2022-01-31 01:51:37 +0900 |
commit | b0b51cecc27be0ead1b9fb46a7d5bd17d36fef8a (patch) | |
tree | 16e5d43467162bd082137757a668df20b89cd568 /sphinx/ext/autodoc/directive.py | |
parent | 799385f5558a888d1a143bf703d06b66d6717fe4 (diff) | |
download | sphinx-git-b0b51cecc27be0ead1b9fb46a7d5bd17d36fef8a.tar.gz |
Close #10146: autodoc: autodoc_default_options does not support `no-value` option
Diffstat (limited to 'sphinx/ext/autodoc/directive.py')
-rw-r--r-- | sphinx/ext/autodoc/directive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/autodoc/directive.py b/sphinx/ext/autodoc/directive.py index 8b8048f8a..0c040e1ef 100644 --- a/sphinx/ext/autodoc/directive.py +++ b/sphinx/ext/autodoc/directive.py @@ -30,7 +30,7 @@ logger = logging.getLogger(__name__) AUTODOC_DEFAULT_OPTIONS = ['members', 'undoc-members', 'inherited-members', 'show-inheritance', 'private-members', 'special-members', 'ignore-module-all', 'exclude-members', 'member-order', - 'imported-members', 'class-doc-from'] + 'imported-members', 'class-doc-from', 'no-value'] AUTODOC_EXTENDABLE_OPTIONS = ['members', 'private-members', 'special-members', 'exclude-members'] |