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?
|
|
That's it. If you want to document a function or a class, you put a string just after the definition. For instance:
But what about a module? How can I document what a file.py does?
|
|||
|
|
|
|
For the packages, you can document it in All the information is here: http://www.python.org/dev/peps/pep-0257/ |
||
|
|
|
|
It's easy, you just add a docstring at the top of the module. |
||
|
|
|
|
You do it the exact same way. Put a string in as the first statement in the module. |
||
|
|
|
|
Ok, thank you for your quick answers :) |
||
|
|