X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=docs%2Fconf.py;h=babac9d3e8689ba0c5a230c095fe1af9419aa428;hb=91334e2f21a891c38c4c9432c96f52132bafa801;hp=7b5287fbe7947a9098cb833fc1455054e619f131;hpb=eb7d4fcb7edb2f6d405cbfbba6bb2df484af4d94;p=pyutils.git diff --git a/docs/conf.py b/docs/conf.py index 7b5287f..babac9d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,3 +60,16 @@ html_theme = 'sphinx_rtd_theme' # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] + + +# Don't skip __init__()! +def skip(app, what, name, obj, would_skip, options): + if name == "__init__": + return False + if name == "__repr__": + return False + return would_skip + + +def setup(app): + app.connect("autodoc-skip-member", skip)