Python doesn't "officially" have attribute docstrings, in the sense that nothing will automatically fill the __doc__ of an attribute. However, PEP 258 (https://www.python.org/dev/peps/pep-0258/#attribute-docstrings) defines a convention for external documentation-extracting tools, where a string literal immediately following a simple assignment is interpreted as documentation for the thing being assigned. KDevelop doesn't support this. It seems to extract the string literal *before* an assignment. This is worse than extracting nothing, because if docstrings are written according to the PEP so that docutils extracts them properly, KDevelop's tooltip will show the wrong thing. Here's an example from the PEP. g = 'module attribute (module-global variable)' """This is g's docstring.""" class AClass: c = 'class attribute' """This is AClass.c's docstring.""" In KDevelop, "This is g's docstring" appears in the tooltip for 'c' instead. Another example: class Obj: """Obj's docstring, extracted correctly""" foo=1 """this should be foo's docstring""" bar=2 """this should be bar's docstring""" In this example, "foo" shows no documentation in the tooltip, and "bar" shows the docstring for "foo" instead.
Turns out PEP 258 was rejected. However, PEP 257 (accepted) briefly mentions this: "String literals occurring immediately after a simple assignment at the top level of a module, class, or __init__ method are called 'attribute docstrings'." Sphinx also supports this syntax for attribute documentation, along with two more: http://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html#directive-autoattribute class Foo: """Docstring for class Foo.""" #: Doc comment for class attribute Foo.bar. #: It can have multiple lines. bar = 1 flox = 1.5 #: Doc comment for Foo.flox. One line only. baz = 2 """Docstring for class attribute Foo.baz.""" Should we implement all three?
Yes, that would be nice.