When I use _ as a prefix for the class name (see also http://docs.python.org/tutorial/classes.html#private-variables-and-class-local-references and "Private" (implementation) in Python ), the class becomes non-public and pydoc is not displayed:
class _DoNotShowMeInPydoc: """Class Documentation which is not displayed""" ...
This is what I want because this class is only used internally and does not matter to people who use the module.
But what if someone comes in who wants to know about the internal modules of my module, which (of course) are also documented? Is there a flag or option for pydoc to display non-public classes?
source share