Libcloud follow epytext docstring formatiing.
- Docstrings should always be used to describe the purpose of methods, functions, classes, and modules.
- Method docstring describes all vargs and keywords (varargs and keywords are the names of the * and ** arguments).
- All of the blocks contained by a field must all have equal indentation, and that indentation must be greater than or equal to the indentation of the field's tag.
- All parametrs must have
@param
or@keyword
field and@type
field. @param p: ...
A description of the parameter p for a function or method.@keyword p: ...
A description of the keyword parameter p.