-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit eedfc38 Author: Jason R. Coombs <jaraco@jaraco.com> Date: Fri May 19 13:00:29 2023 -0400 Avoid EncodingWarning in blib2to3 (psf#3696) commit 2fd9d8b Author: Jonathan Berthias <jvberthias@gmail.com> Date: Fri May 19 01:57:17 2023 +0200 Remove blank lines before class docstring (psf#3692) commit db3668a Author: Ray Bell <rayjohnbell0@gmail.com> Date: Tue May 16 22:47:45 2023 -0400 Sort DEFAULT_EXCLUDES and add .vscode, .pytest_cache and .ruff_cache (psf#3691) Co-authored-by: Ray Bell <ray.bell@dtn.com>
- Loading branch information
Showing
5 changed files
with
65 additions
and
2 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
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... | ||
""" |