1
0
forked from VimPlug/jedi

added a scope generator for instances, which is necessary, because instance variables have priority over class vars

This commit is contained in:
David Halter
2012-09-04 15:25:08 +02:00
parent 3cc5c60f02
commit db7c2fc6e7
2 changed files with 29 additions and 10 deletions

View File

@@ -101,14 +101,14 @@ class A(object):
self.b = list
self.a = 1
#? list() str() int()
#? str() int()
self.a
#? ['after']
self.after
self.c = 3
#? set() int()
#? int()
self.c
def after(self):
@@ -129,7 +129,7 @@ a.append
#? []
a.real
#? list() str() int()
#? str() int()
a.a
a = 3