mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
instance variables are now working again, however, it's still a little bit strange
This commit is contained in:
@@ -88,14 +88,14 @@ class A(object):
|
||||
a = list()
|
||||
def __init__(self):
|
||||
self.b = ""
|
||||
|
||||
def before(self):
|
||||
self.b = 3
|
||||
# TODO should this be so?
|
||||
#? int() str() list()
|
||||
self.b
|
||||
|
||||
self.b = list
|
||||
|
||||
def before(self):
|
||||
self.a = 1
|
||||
#? list() str() int()
|
||||
self.a
|
||||
|
||||
Reference in New Issue
Block a user