summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorxmo-odoo <xmo@odoo.com>2022-03-13 17:00:57 +0100
committerGitHub <noreply@github.com>2022-03-13 17:00:57 +0100
commite9838072a499c1e8aea15440f0a05016d7113111 (patch)
tree91ddd1de81e0adf864574d0c5e9b6c9bc3a3b836 /doc
parent3bd8db7059422390200e78873a55ed0770f1f6e2 (diff)
downloadpython-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.py1
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'