1
0
forked from VimPlug/jedi

fix problems with set_vars that were no set_vars

This commit is contained in:
David Halter
2013-09-06 15:24:14 +04:30
parent 6f16aaaa19
commit 9bbd73bf86
2 changed files with 14 additions and 2 deletions

View File

@@ -127,10 +127,12 @@ class A():
A().addition
# should also work before `=`
##? 8 int()
#? 8 int()
A().addition = None
#? 8 int()
A(1).addition = None
a = A()
##? 8 int()
#? 8 int()
a.addition = None