90 lines
2.9 KiB
Python
90 lines
2.9 KiB
Python
def docstring_almost_at_line_limit():
|
|
"""long docstring.................................................................
|
|
"""
|
|
|
|
|
|
def docstring_almost_at_line_limit_with_prefix():
|
|
f"""long docstring................................................................
|
|
"""
|
|
|
|
|
|
def mulitline_docstring_almost_at_line_limit():
|
|
"""long docstring.................................................................
|
|
|
|
..................................................................................
|
|
"""
|
|
|
|
|
|
def mulitline_docstring_almost_at_line_limit_with_prefix():
|
|
f"""long docstring................................................................
|
|
|
|
..................................................................................
|
|
"""
|
|
|
|
|
|
def docstring_at_line_limit():
|
|
"""long docstring................................................................"""
|
|
|
|
|
|
def docstring_at_line_limit_with_prefix():
|
|
f"""long docstring..............................................................."""
|
|
|
|
|
|
def multiline_docstring_at_line_limit():
|
|
"""first line-----------------------------------------------------------------------
|
|
|
|
second line----------------------------------------------------------------------"""
|
|
|
|
|
|
def multiline_docstring_at_line_limit_with_prefix():
|
|
f"""first line----------------------------------------------------------------------
|
|
|
|
second line----------------------------------------------------------------------"""
|
|
|
|
|
|
# output
|
|
|
|
|
|
def docstring_almost_at_line_limit():
|
|
"""long docstring.................................................................
|
|
"""
|
|
|
|
|
|
def docstring_almost_at_line_limit_with_prefix():
|
|
f"""long docstring................................................................
|
|
"""
|
|
|
|
|
|
def mulitline_docstring_almost_at_line_limit():
|
|
"""long docstring.................................................................
|
|
|
|
..................................................................................
|
|
"""
|
|
|
|
|
|
def mulitline_docstring_almost_at_line_limit_with_prefix():
|
|
f"""long docstring................................................................
|
|
|
|
..................................................................................
|
|
"""
|
|
|
|
|
|
def docstring_at_line_limit():
|
|
"""long docstring................................................................"""
|
|
|
|
|
|
def docstring_at_line_limit_with_prefix():
|
|
f"""long docstring..............................................................."""
|
|
|
|
|
|
def multiline_docstring_at_line_limit():
|
|
"""first line-----------------------------------------------------------------------
|
|
|
|
second line----------------------------------------------------------------------"""
|
|
|
|
|
|
def multiline_docstring_at_line_limit_with_prefix():
|
|
f"""first line----------------------------------------------------------------------
|
|
|
|
second line----------------------------------------------------------------------"""
|