66 lines
987 B
Python
66 lines
987 B
Python
def line_before_docstring():
|
|
|
|
"""Please move me up"""
|
|
|
|
|
|
class LineBeforeDocstring:
|
|
|
|
"""Please move me up"""
|
|
|
|
|
|
class EvenIfThereIsAMethodAfter:
|
|
|
|
"""I'm the docstring"""
|
|
def method(self):
|
|
pass
|
|
|
|
|
|
class TwoLinesBeforeDocstring:
|
|
|
|
|
|
"""I want to be treated the same as if I were closer"""
|
|
|
|
|
|
class MultilineDocstringsAsWell:
|
|
|
|
"""I'm so far
|
|
|
|
and on so many lines...
|
|
"""
|
|
|
|
class SingleQuotedDocstring:
|
|
|
|
"I'm a docstring but I don't even get triple quotes."
|
|
|
|
# output
|
|
|
|
|
|
def line_before_docstring():
|
|
"""Please move me up"""
|
|
|
|
|
|
class LineBeforeDocstring:
|
|
"""Please move me up"""
|
|
|
|
|
|
class EvenIfThereIsAMethodAfter:
|
|
"""I'm the docstring"""
|
|
|
|
def method(self):
|
|
pass
|
|
|
|
|
|
class TwoLinesBeforeDocstring:
|
|
"""I want to be treated the same as if I were closer"""
|
|
|
|
|
|
class MultilineDocstringsAsWell:
|
|
"""I'm so far
|
|
|
|
and on so many lines...
|
|
"""
|
|
|
|
|
|
class SingleQuotedDocstring:
|
|
"I'm a docstring but I don't even get triple quotes."
|