My question can be simply illustrated by this code:
def proceed(self, *args):
myname = ???
func = getattr(otherobj, myname)
result = func(*args)
# result = ... process result ..
return result
class dispatch(object):
def __init__(self, cond=1):
for index in range(1, cond):
setattr(self, 'step%u' % (index,), new.instancemethod(proceed, self, dispatch)
After that instance of dispatch must have step1..stepn members, that call corresponding methods in otherobj. How to do that? Or more specifically: What must be inserted in proceed after 'myname =' ?