Flocks, we have a framework that allows our researchers to change methods(operations) in a class to suite thier needs while saving those changes. E.g Consider definition of the class foo below. (with version 1 & version 2)
class foo:
#class version 1
def operation_1(self):
# version 1
pass
def operation_2(self):
# version 1
pass
class foo:
# class version 2
def operation_1(self):
# version 2
pass
def operation_2(self):
# version 2
pass
another researcher may want to his class to appear as below; ( he is using a method from version 1 and another method from verion 2)
class foo:
# class version 3
def operation_1(self):
# version 1
pass
def operation_2(self):
# version 2
pass
Currenlty one has to copy and paste the source code. I am looking for a way to generalise this. probably something like
klass = foo()
klass.operation_1 = foo.operation_1 # from ver 1 of foo
klass.operation_2 = foo.operation_2 # from ver 2 of foo
evaluate(klass)
and probably evaluate() is a function that evaluates such expressions. These classes are persistent