Files
openide/python/testData/resolve/InstanceAttrBelowAndOtherMethodAbove.py
Andrey Vlasovskikh 2658c212b0 PY-45206 Resolve attributes defined outside __init__ to the first method that defines them, not the last one
GitOrigin-RevId: 1091403721a15334b7775e63205352fc60084e15
2021-03-30 14:26:54 +00:00

13 lines
186 B
Python

class C:
def g(self):
self.foo = 0
def h(self):
self.foo = 0
def f(self):
x = self.foo
# <ref>
self.foo = 1
return x