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