show/hide this revision's text 2 edited tags
show/hide this revision's text 1

How do I document a module in Python?

That's it. If you want to document a function or a class, you put a string just after the definition. For instance:

def foo():
    """This function does nothing."""
    pass

But what about a module? How can I document what a file.py does?