summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-07-31 10:33:30 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2022-07-31 10:34:26 -0400
commit3ff18812d8d80b2016ceeea98c808a76cae85e48 (patch)
tree25f2ad20a1ee5466148bfdb8d65c5ecce21e3326
parent1657312ba77cf2a8751aed195b4d246afb28b64e (diff)
downloadsqlalchemy-3ff18812d8d80b2016ceeea98c808a76cae85e48.tar.gz
exclude __new__
due to Generic this method seems to be coming out everywhere and it's just noise Change-Id: I8fabb462d5faebb156b147fbd8f89dbb1b1ba380
-rw-r--r--doc/build/conf.py4
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"