mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 21:44:18 +07:00
GitOrigin-RevId: 0311ba9c7085725a918472946312dde164f8541c
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
|