mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 16:02:32 +07:00
GitOrigin-RevId: 0311ba9c7085725a918472946312dde164f8541c
12 lines
184 B
Python
12 lines
184 B
Python
class Test:
|
|
x = 5
|
|
|
|
def method(self):
|
|
def func():
|
|
y = extracted()
|
|
return y
|
|
|
|
def extracted():
|
|
y = self.x
|
|
return y
|