X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/368f043f138112f63ff521c3481993c589eb7508..07c8812937cf75ac5bc7ceac07ef5ea383f10f2f:/tests/data/docstring.py diff --git a/tests/data/docstring.py b/tests/data/docstring.py index 9e1c244..e977619 100644 --- a/tests/data/docstring.py +++ b/tests/data/docstring.py @@ -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: @@ -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" \ No newline at end of file