https://github.com/marshalx/pydoc_issue
show_inherited_members=True
https://github.com/marshalx/pydoc_issue
Last synced: 7 months ago
JSON representation
show_inherited_members=True
- Host: GitHub
- URL: https://github.com/marshalx/pydoc_issue
- Owner: MarshalX
- Created: 2021-03-11T14:12:00.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-11T14:30:01.000Z (over 4 years ago)
- Last Synced: 2024-10-19T07:15:25.744Z (12 months ago)
- Language: HTML
- Homepage: https://github.com/pdoc3/pdoc/issues/322
- Size: 3.91 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```bash
pip install pdoc3
pdoc test --html -c show_inherited_members=True --force
```# Ref
**https://marshalx.github.io/pydoc_issue/html/test/test2.html**
## Actual behavior
method1 of class test2 is not displayed.
## Excepted behavior
method1 should display as method2 but with mark "Inherited from".
## Additional info
If I add a docstring to method1, it will appear (method0 as an example).
I would like to appear this method with an empty docstring.