-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove blank lines before class docstring (psf#3692)
- Loading branch information
1 parent
db3668a
commit 2fd9d8b
Showing
4 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
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... | ||
""" | ||
|
||
|
||
# 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... | ||
""" |