mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
10 lines
183 B
Python
10 lines
183 B
Python
class Test:
|
|
def method(self):
|
|
def func(x):
|
|
y = extracted(x)
|
|
return y
|
|
|
|
def extracted(x_new):
|
|
y = x_new * 2
|
|
return y
|