Join GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign upDocumenting methods starting with "_" character #77
Comments
This comment has been minimized.
This comment has been minimized.
mjwillson
commented
Jan 20, 2016
|
I'm guessing that's intentional, since a _ prefix in python conventionally signifies that something is private / not part of the public API. Hence doesn't make sense to expose in documentation. |
This comment has been minimized.
This comment has been minimized.
|
@mjwillson Is correct. |
BurntSushi
closed this
Jan 20, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
gvvka0327 commentedNov 12, 2015
I have a class with few methods starting with "_", all those methods were skipped by pdoc in documenting them, like example,
def _get_msg():
"""
Returns commit message
"""
def _get_password(username):
"""
return password
"""
Consistently all the methods like these in all the modules were skipped... all the getting methods are skipped...
Anything I am missing or is it a bug in pdoc tool ?