示例#1
0
 def __init__(self, name, num):
     CallStatement.__init__(self)
     
     self.__number_arguments = num
     self.__name = name
     # pylint: disable-msg=W0612
     self._arguments = [None for _x in range(self.__number_arguments)]
示例#2
0
文件: template.py 项目: hdeweirdt/imp
 def __init__(self, env, template_file = None, template_content = None):
     CallStatement.__init__(self)
     self._template = template_file
     self._content = template_content
     self._env = env