X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/557b54aa60e9abbb93e5737512d9963e640f2d1f..4b7b5ed5b8630a906e2ef3a405134131651a251e:/tests/data/docstring.py diff --git a/tests/data/docstring.py b/tests/data/docstring.py index ee6d0c0..e977619 100644 --- a/tests/data/docstring.py +++ b/tests/data/docstring.py @@ -174,6 +174,20 @@ 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: @@ -347,3 +361,17 @@ def multiline_backslash_1(): 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