summaryrefslogtreecommitdiff
path: root/tests/roots/test-ext-autodoc/target/instance_variable.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix #9283: autodoc: failed to build doc for attribute not commentedTakeshi KOMIYA2021-05-301-0/+1
| | | | | | Autoattribute directive should check the existence of instance attribute that is defined inside __init__() but not having comments before accessing it.
* Fix #741: autodoc: inherited-members doesn't support instance attributes on ↵Takeshi KOMIYA2020-12-181-0/+10
super class To support instance attributes on super class, get_class_members() scans the instance attributes defined at super classes using ModuleAnalyzer. It allows to generate document for them when users gives : inherited-members: option.