mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 23:39:57 +07:00
GitOrigin-RevId: 0311ba9c7085725a918472946312dde164f8541c
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
|