ya2 · news · projects · code · about

refactoring of functional tests
[pmachines.git] / lib / decorator.py
CommitLineData
8ee66edd
FC
1# class Decorator:\r
2\r
3# def __init__(self, decorated):\r
4# self.__dict__['_decorated'] = decorated\r
5\r
6# def __getattr__(self, attr): return getattr(self._decorated, attr)\r
7\r
8# def __setattr__(self, attr, value):\r
9# return setattr(self._decorated, attr, value)\r