From: Mike Bayer Date: Mon, 22 Aug 2022 19:29:31 +0000 (-0400) Subject: repair sphinx undoc-members directive X-Git-Tag: rel_2_0_0b1~95 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27bf1c1c287debb69c4644bf6dc35e3bad5470ad;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git repair sphinx undoc-members directive "undoc-members" : False means *include* undocumented members, it seems. Change-Id: I90faf9b3ce3a94448b6522f7ad9946426f762900 --- diff --git a/doc/build/conf.py b/doc/build/conf.py index 628dec47e4..7abdd45e2e 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -115,7 +115,7 @@ autodoc_class_signature = "separated" autodoc_default_options = { "exclude-members": "__new__", - "undoc-members": False, + "no-undoc-members": True, } # enable "annotation" indicator. doesn't actually use this