Bug 400536 - Extract attribute docstrings according to PEP258
Summary: Extract attribute docstrings according to PEP258
Status: ASSIGNED
Alias: None
Product: kdev-python
Classification: Developer tools
Component: general (show other bugs)
Version: 5.2.4
Platform: Other Linux
: NOR wishlist
Target Milestone: ---
Assignee: Francis Herne
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-11-01 00:50 UTC by Nicolás Alvarez
Modified: 2018-11-04 09:26 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Nicolás Alvarez 2018-11-01 00:50:37 UTC
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.
Comment 1 Nicolás Alvarez 2018-11-03 23:25:33 UTC
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?
Comment 2 Francis Herne 2018-11-04 09:26:21 UTC
Yes, that would be nice.