コード例 #1
0
 def create_action(self):
     """
     Create action from Actions module
     """
     self.action = create_action(self)
コード例 #2
0
ファイル: runable.py プロジェクト: vxgmichel/python-sequence
 def __init__(self, thread):
     """
     Initialize the execution with the parent thread
     """
     AbstractExecution.__init__(self, thread)
     self.action = create_action(self.block)
コード例 #3
0
ファイル: runable.py プロジェクト: vxgmichel/python-sequence
 def __init__(self, thread):
     """
     Initialize the execution with the parent thread
     """
     AbstractExecution.__init__(self, thread)
     self.action = create_action(self.block)
コード例 #4
0
ファイル: parser.py プロジェクト: vxgmichel/python-sequence
 def create_action(self):
     """
     Create action from Actions module
     """
     self.action = create_action(self)