X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/ddec93c912e97f33769cd08a8ed470d3b67162e5..30c59c96869c9996540f1cf844dadd38d00ab8f3:/docs/conf.py diff --git a/docs/conf.py b/docs/conf.py index d6c70af..cad16d6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -225,3 +225,11 @@ man_pages = [ ('index', 'philo', u'Philo Documentation', [u'Stephen Burrows'], 1) ] + +def skip_attribute_attrs(app, what, name, obj, skip, options): + if name in ("attribute_set", "get_attribute_mapper", "nodes"): + return True + return skip + +def setup(app): + app.connect('autodoc-skip-member', skip_attribute_attrs)