Re: [sphinx-users] Re: Excluding particular base classes from autodoc inherited-members

2016-09-21 Thread Jake Vanderplas
Thanks Komiya, In case anyone comes across this thread, what I ended up doing was creating a custom Documenter for the objects in question which injects an :exclude-members: option that explicitly lists every member of the base class. A bit clunky, maybe, but it works. Code is here: https://githu

[sphinx-users] Re: Excluding particular base classes from autodoc inherited-members

2016-09-21 Thread Komiya Takeshi
Hi Jake, As far as I know, there are no option to do that. Thanks, 2016年9月16日金曜日 0時41分01秒 UTC+9 Jake: > > Hi all, > I hope to use autodoc for a project I'm working on. Most of my classes > inherit from some very low-level base classes, whose methods I don't want > in the documentation. > > Unf