X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/1fc3215e8c8856094b20d497e4e0e3e547ed38eb..e5490e96232e301e9eed971984bb75f2f87475b0:/tests/data/docstring.py?ds=sidebyside diff --git a/tests/data/docstring.py b/tests/data/docstring.py index 74532b2b..9e1c2441 100644 --- a/tests/data/docstring.py +++ b/tests/data/docstring.py @@ -115,6 +115,10 @@ def oneline_empty(): ''' ''' +def oneline_nothing(): + """""" + + def single_quotes(): 'testing' @@ -267,6 +271,10 @@ def oneline_empty(): """ """ +def oneline_nothing(): + """ """ + + def single_quotes(): "testing"