mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 11:07:43 +07:00
GitOrigin-RevId: 1091403721a15334b7775e63205352fc60084e15
13 lines
186 B
Python
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
|