I want to use Python docstring to better document my code.
In the function below, it takes a list as input and write a file into disk. I want to know how to document the output of function in docstring as the function return type in None. Does it have a convention?
def foo(list_of_items: list) -> None :
"""Simple function.
Parameters
----------
list_of_items : list of str
list of some texts
Returns
-------
what is the best way to write this section?
"""
file = open('/path/output.txt')
file.write(list_of_items[1])
file.close()
The only Python convention regarding type hints would be:
Considering this, there are 3 syntax for writing docstrings. Two syntaxes have their own style guide, see numpydoc docstring guide and Google Python Style Guide - 3.8 Comments and Docstrings. (By comparison PEP 8 and PEP 257 are not as specific).
The case of functions that only return
None
is not specifically mentioned by numpydoc style guide, carefully notice that it only addressess the case of functions that return values:Thus In formal Python terms, a function that returns
None
returns no value, because in this situationNone
signifies the absence of a value, and so the numpydoc guideline does not mention this special case:Since the style guide is omiss, so we can try to search the numpy documentation for a function that returns
None
to see how it's done. A good example isnumpy.copyto
and indeed the docstring section corresponding toReturn
is absent.The detailed documentation of a method and its docstring should not to be confused with a listing where a brief textual description might be given. Compare the detailed documentation of the above
numpy.copyto
example with the list in Logic functions - comparison which does textually describe the returns but omits all type hints from the signatures.For completeness we can quote the Google style guide on this case:
Finally, the example in the question can be written with NumPy style docstrings as:
Or with Google style docstrings as: