X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/97c24664c5bc251f7b67756b8b184962ca44b6d9..557b54aa60e9abbb93e5737512d9963e640f2d1f:/tests/data/docstring.py?ds=inline diff --git a/tests/data/docstring.py b/tests/data/docstring.py index 9e1c244..ee6d0c0 100644 --- a/tests/data/docstring.py +++ b/tests/data/docstring.py @@ -158,6 +158,22 @@ def docstring_with_inline_tabs_and_tab_indentation(): """ pass + +def backslash_space(): + """\ """ + + +def multiline_backslash_1(): + ''' + hey\there\ + \ ''' + + +def multiline_backslash_2(): + ''' + hey there \ ''' + + # output class MyClass: @@ -316,3 +332,18 @@ 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 \ """