X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/368f043f138112f63ff521c3481993c589eb7508..62402a32618bc62ae90cfcdc3d47c7ad20e60e10:/tests/data/docstring.py diff --git a/tests/data/docstring.py b/tests/data/docstring.py index 9e1c244..96bcf52 100644 --- a/tests/data/docstring.py +++ b/tests/data/docstring.py @@ -102,7 +102,7 @@ def and_this(): "hey yah"''' -def empty(): +def multiline_whitespace(): ''' @@ -111,11 +111,11 @@ def empty(): ''' -def oneline_empty(): +def oneline_whitespace(): ''' ''' -def oneline_nothing(): +def empty(): """""" @@ -158,6 +158,36 @@ def docstring_with_inline_tabs_and_tab_indentation(): """ pass + +def backslash_space(): + """\ """ + + +def multiline_backslash_1(): + ''' + hey\there\ + \ ''' + + +def multiline_backslash_2(): + ''' + hey there \ ''' + + +def multiline_backslash_3(): + ''' + already escaped \\ ''' + + +def my_god_its_full_of_stars_1(): + "I'm sorry Dave\u2001" + + +# the space below is actually a \u2001, removed in output +def my_god_its_full_of_stars_2(): + "I'm sorry Dave " + + # output class MyClass: @@ -263,16 +293,16 @@ def and_this(): "hey yah"''' -def empty(): +def multiline_whitespace(): """ """ -def oneline_empty(): +def oneline_whitespace(): """ """ -def oneline_nothing(): - """ """ +def empty(): + """""" def single_quotes(): @@ -316,3 +346,32 @@ def docstring_with_inline_tabs_and_tab_indentation(): line ends with some tabs """ pass + + +def backslash_space(): + """\ """ + + +def multiline_backslash_1(): + """ + hey\there\ + \ """ + + +def multiline_backslash_2(): + """ + hey there \ """ + + +def multiline_backslash_3(): + """ + already escaped \\""" + + +def my_god_its_full_of_stars_1(): + "I'm sorry Dave\u2001" + + +# the space below is actually a \u2001, removed in output +def my_god_its_full_of_stars_2(): + "I'm sorry Dave"