diff options
author | xmo-odoo <xmo@odoo.com> | 2022-03-13 17:00:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-13 17:00:57 +0100 |
commit | e9838072a499c1e8aea15440f0a05016d7113111 (patch) | |
tree | 91ddd1de81e0adf864574d0c5e9b6c9bc3a3b836 /doc | |
parent | 3bd8db7059422390200e78873a55ed0770f1f6e2 (diff) | |
download | python-lxml-e9838072a499c1e8aea15440f0a05016d7113111.tar.gz |
docs: explain the global "set_element_class_lookup()" function better (GH-341)
Also set "inherited-members" in the autodoc config to make the methods of internal classes visible, e.g. of "_BaseParser".
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/conf.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/api/conf.py b/doc/api/conf.py index 75aa2817..7c5f134d 100644 --- a/doc/api/conf.py +++ b/doc/api/conf.py @@ -46,6 +46,7 @@ html_theme_options = { autodoc_default_options = { 'ignore-module-all': True, 'private-members': True, + 'inherited-members': True, } autodoc_member_order = 'groupwise' |