jen to chce dotáhnout syntakticky ( tady pomocí from ... import ... as ... )
class MyClass:
def __init__(self):
self.method_one(1,2,3)
self.method_two(4,5,6)
from MyClass_method_one_python import MyClass_method_one as method_one
from MyClass_method_two_python import MyClass_method_two as method_two
def method_three(self, a, b, c):
print( a, b, c)
MyClass()