
In programming, a docstring is a string literal specified in source code that is used, like a comment, to document a specific segment 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 ...
Found on
http://en.wikipedia.org/wiki/Docstring

A docstring is a string literal that occurs as the first statement in a module, function, class, or method definition.
Found on
http://www.pythonforbeginners.com/cheatsheet/python-glossary

A string that appears as the lexically first expression in a module, class definition or function/method definition is assigned as the __doc__ attribute of the object where it is available to documentation tools or the help() builtin function.
Found on
https://wiki.python.org/moin/PythonGlossary
No exact match found.