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?

link|improve this question

feedback

3 Answers

up vote 17 down vote accepted

For the packages, you can document it in __init__.py. For the modules, you can add a docstring simply in the module file.

All the information is here: http://www.python.org/dev/peps/pep-0257/

link|improve this answer
feedback

You do it the exact same way. Put a string in as the first statement in the module.

link|improve this answer
This is what eclipse does automatically when you create a new module. – Rivka Aug 29 '11 at 13:41
feedback

It's easy, you just add a docstring at the top of the module.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.