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