diff options
-rw-r--r-- | doc/build/conf.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/build/conf.py b/doc/build/conf.py index 26ab906bb..951e843b6 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -113,6 +113,10 @@ exclude_patterns = ["build", "**/unreleased*/*", "**/*_include.rst"] autodoc_class_signature = "separated" +autodoc_default_options = { + "exclude-members": "__new__", +} + # enable "annotation" indicator. doesn't actually use this # link right now, it's just a png image zzzeeksphinx_annotation_key = "glossary#annotated-example" |