]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
exclude __new__
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 31 Jul 2022 14:33:30 +0000 (10:33 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 31 Jul 2022 14:34:26 +0000 (10:34 -0400)
due to Generic this method seems to be coming out everywhere
and it's just noise

Change-Id: I8fabb462d5faebb156b147fbd8f89dbb1b1ba380

doc/build/conf.py

index 26ab906bb363dce3fb939f73a98bba0f9a00215c..951e843b6896726df5656465a753ed7820a8dcd2 100644 (file)
@@ -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"