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 upDocumentation for methods with @MethodName decorator #76
Comments
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 staticmethods and methods with @MethodName decorator
staticmethods with @staticmethod decorator got documented but other methods got skipped... does pdoc handle methods with @MethodName differently, for example,
@MethodName
def to_tab_delimited(self, output):
"""Reformats columnar output from pxssh session to be tab-delimited
""""
This method got skipped, and consistently in other modules as well, all methods with @MethodName decorator got skipped... anything I need to take care of ...