Wenn ich M-qeinen Docstring wie diesen drücke, werden die Zeilenumbrüche im Docstring durcheinander gebracht:
def foo(word):
"""
This is a function that does something.
@param word: str, input.
@returns: True
"""
wird dies
def foo(word):
"""This is a function that does something. @param word:
str, input. @returns: True
"""