All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 def docstring_almost_at_line_limit():
2 """long docstring.................................................................
6 def docstring_almost_at_line_limit_with_prefix():
7 f"""long docstring................................................................
11 def mulitline_docstring_almost_at_line_limit():
12 """long docstring.................................................................
14 ..................................................................................
18 def mulitline_docstring_almost_at_line_limit_with_prefix():
19 f"""long docstring................................................................
21 ..................................................................................
25 def docstring_at_line_limit():
26 """long docstring................................................................"""
29 def docstring_at_line_limit_with_prefix():
30 f"""long docstring..............................................................."""
33 def multiline_docstring_at_line_limit():
34 """first line-----------------------------------------------------------------------
36 second line----------------------------------------------------------------------"""
39 def multiline_docstring_at_line_limit_with_prefix():
40 f"""first line----------------------------------------------------------------------
42 second line----------------------------------------------------------------------"""
45 def single_quote_docstring_over_line_limit():
46 "We do not want to put the closing quote on a new line as that is invalid (see GH-3141)."
49 def single_quote_docstring_over_line_limit2():
50 'We do not want to put the closing quote on a new line as that is invalid (see GH-3141).'
56 def docstring_almost_at_line_limit():
57 """long docstring................................................................."""
60 def docstring_almost_at_line_limit_with_prefix():
61 f"""long docstring................................................................"""
64 def mulitline_docstring_almost_at_line_limit():
65 """long docstring.................................................................
67 ..................................................................................
71 def mulitline_docstring_almost_at_line_limit_with_prefix():
72 f"""long docstring................................................................
74 ..................................................................................
78 def docstring_at_line_limit():
79 """long docstring................................................................"""
82 def docstring_at_line_limit_with_prefix():
83 f"""long docstring..............................................................."""
86 def multiline_docstring_at_line_limit():
87 """first line-----------------------------------------------------------------------
89 second line----------------------------------------------------------------------"""
92 def multiline_docstring_at_line_limit_with_prefix():
93 f"""first line----------------------------------------------------------------------
95 second line----------------------------------------------------------------------"""
98 def single_quote_docstring_over_line_limit():
99 "We do not want to put the closing quote on a new line as that is invalid (see GH-3141)."
102 def single_quote_docstring_over_line_limit2():
103 "We do not want to put the closing quote on a new line as that is invalid (see GH-3141)."