mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
11 lines
205 B
Python
11 lines
205 B
Python
class Test:
|
|
a = 5
|
|
def method(self, b):
|
|
def func(c):
|
|
y = extracted(c)
|
|
return y
|
|
|
|
def extracted(c_new):
|
|
y = self.a + b * c_new
|
|
return y
|