Is there a way to describe the module's data (in a similar way that a docstring describes a module or a funcion)?
|
|
|||
|
|
|
To my knowledge, it is not possible to assign docstrings to module data members. PEP 224 suggests this feature, but the PEP was rejected. I suggest you document the data members of a module in the module's docstring:
|
||
|
|
|
|
As codeape explains, it's not possible to document general data members. However, it is possible to document
This will give a docstring to the |
||
|
|
|
It is possible to make documentation of module's data, with use of epydoc syntax. Epydoc is one of the most frequently used documentation tools for Python. The syntax for documenting is
Now when you generate your documentation, |
||
|
