tutorial manager proof-of-concept
[enigma2.git] / lib / python / Tools / BoundFunction.py
1 class boundFunction:
2         def __init__(self, fnc, *args):
3                 self.fnc = fnc
4                 self.args = args
5         def __call__(self, *args):
6                 self.fnc(*self.args + args)