Is it posible to use docstring for plain variable? For example I have module called t
t
def f(): \"\"\"f\"\"\" l = lambda x: x \"\"\"l\"\"\"
To add to to ford's answer about Epydoc, note that PyCharm will also use a string literal as the documentation for a variable in a class:
class Fields_Obj: DefaultValue=None """Get/set the default value of the data field"""