vote up 5 vote down star

Is there a way to describe the module's data (in a similar way that a docstring describes a module or a funcion)?

flag

You'll have to provide some sample code that shows what you'd like to do. The question is hard to interpret. – S.Lott Oct 13 '08 at 12:29

3 Answers

vote up 5 vote down check

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:

# module.py:
"""About the module.

module.data: contains the word "spam"

"""

data = "spam"
link|flag
vote up 1 vote down

As codeape explains, it's not possible to document general data members.

However, it is possible to document property data members:

class Foo:
  def get_foo(self): ...

  def set_foo(self, val): ...

  def del_foo(self): ...

  foo = property(get_foo, set_foo, del_foo, '''Doc string here''')

This will give a docstring to the foo attribute, obviously.

link|flag
this is pretty neat... – Bartosz Radaczyński Oct 15 '08 at 6:44
vote up 4 vote down

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 #: above the variable initialization line, like this:

# module.py:

#: Very important data.
#: Use with caution.
#: @type: C{str}
data = "important data"

Now when you generate your documentation, data will be described as module variable with given description and type str. You can omit the @type line.

link|flag
Even though this is cool, I was looking for exactly docstings (since these are the most helpful in the console environment using help builtin). Anyway thanx – Bartosz Radaczyński Oct 13 '08 at 13:43

Your Answer

Get an OpenID
or

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