From ebc8d4c04cd212e338801d87ee7296f3a0828405 Mon Sep 17 00:00:00 2001 From: David Halter Date: Fri, 19 Jul 2013 12:47:38 +0200 Subject: [PATCH] docstring test with statement docstrings (failed until now, worked only for specific cases) --- test/completion/docstring.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test/completion/docstring.py b/test/completion/docstring.py index b4485e7f..b61d05ed 100644 --- a/test/completion/docstring.py +++ b/test/completion/docstring.py @@ -88,3 +88,11 @@ class Test(object): def test(self): #? ['teststr'] self.teststr + +# ----------------- +# statement docstrings +# ----------------- +d = '' +""" bsdf """ +#? str() +d.upper()