We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would like to see private methods/variables in the documentation
Methods and variables that begin with "_" are excluded.
If I change this line: https://github.com/mkinney/pdoc/blob/master/pdoc/__init__.py#L409
to this:
return not ident_name.startswith("__")
It does what I'd like to see.
Would it make sense to add a command line arg (or configuration setting) that would enable this?
The text was updated successfully, but these errors were encountered:
bump
Sorry, something went wrong.
No response ?
No branches or pull requests
Expected Behavior
Would like to see private methods/variables in the documentation
Actual Behavior
Methods and variables that begin with "_" are excluded.
Steps to Reproduce
Additional info
pdoc 0.10.0
If I change this line:
https://github.com/mkinney/pdoc/blob/master/pdoc/__init__.py#L409
to this:
return not ident_name.startswith("__")
It does what I'd like to see.
Would it make sense to add a command line arg (or configuration setting) that would enable this?
The text was updated successfully, but these errors were encountered: