X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/557b54aa60e9abbb93e5737512d9963e640f2d1f..6559bdbd9dcf71ba0017d66bb133c744bd83b0e3:/tests/data/docstring.py diff --git a/tests/data/docstring.py b/tests/data/docstring.py index ee6d0c0..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(): """""" @@ -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: @@ -279,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(): @@ -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"