예제 #1
0
파일: action.py 프로젝트: maximerobin/Ufwi
 def _createTuple(self, func_list):
     updates = Updates()
     for func in func_list:
         updates.addUpdates(func.updates)
     return updates.createTuple()
예제 #2
0
파일: action.py 프로젝트: maximerobin/Ufwi
 def __init__(self, update, func, *arguments, **kw):
     updates = Updates.create(update)
     NoopActionHandler.__init__(self, updates)
     self.func = func
     self.arguments = arguments
     self.kw = kw