From 2e0d0bb4f5e5199edb57ac83ff9eafc88ebfcc67 Mon Sep 17 00:00:00 2001 From: David Halter Date: Sat, 4 May 2013 13:28:07 +0430 Subject: [PATCH] test for #210 --- test/completion/docstring.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/completion/docstring.py b/test/completion/docstring.py index 94c4a471..b4485e7f 100644 --- a/test/completion/docstring.py +++ b/test/completion/docstring.py @@ -78,3 +78,13 @@ def both(): #? str(), int() both() + +class Test(object): + def __init__(self): + self.teststr = "" + """ + # jedi issue #210 + """ + def test(self): + #? ['teststr'] + self.teststr