Docstring
Appearance
In programming, a docstring is a comment included in source code to document the purpose of a piece of code. Unlike conventional source code comments, or even specifically formatted comments like Javadoc documentation, docstrings are not stripped from the source tree when it is parsed, but are retained throughout the runtime of the program. This allows the program to inspect these comments at run time, for instance as an interactive help system, or as metadata
Among languages that support docstrings are Python and Lisp.
Tools using docstrings
External Links
- Python Docstrings
- Documentation in GNU Emacs Lisp
- The Doxygen documentation generator and Python Docstrings.