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.................................................................
61 def docstring_almost_at_line_limit_with_prefix():
62 f"""long docstring................................................................
66 def mulitline_docstring_almost_at_line_limit():
67 """long docstring.................................................................
69 ..................................................................................
73 def mulitline_docstring_almost_at_line_limit_with_prefix():
74 f"""long docstring................................................................
76 ..................................................................................
80 def docstring_at_line_limit():
81 """long docstring................................................................"""
84 def docstring_at_line_limit_with_prefix():
85 f"""long docstring..............................................................."""
88 def multiline_docstring_at_line_limit():
89 """first line-----------------------------------------------------------------------
91 second line----------------------------------------------------------------------"""
94 def multiline_docstring_at_line_limit_with_prefix():
95 f"""first line----------------------------------------------------------------------
97 second line----------------------------------------------------------------------"""
100 def single_quote_docstring_over_line_limit():
101 "We do not want to put the closing quote on a new line as that is invalid (see GH-3141)."
104 def single_quote_docstring_over_line_limit2():
105 "We do not want to put the closing quote on a new line as that is invalid (see GH-3141)."