mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 17:47:53 +07:00
GitOrigin-RevId: 0311ba9c7085725a918472946312dde164f8541c
10 lines
195 B
Python
10 lines
195 B
Python
class Test:
|
|
def method(self, a):
|
|
def func(b):
|
|
x = extracted(b)
|
|
return x
|
|
|
|
def extracted(b_new):
|
|
x = self.method(b_new)
|
|
return x
|