예제 #1
0
파일: syntax.py 프로젝트: bruceg/bglibs
	def execute(self, context):
		context.push()
		dict = context.eval(self.expr)
		context.update(dict)
		self.body.execute(context)
		context.pop()
예제 #2
0
파일: syntax.py 프로젝트: bruceg/bglibs
	def execute(self, context):
		list = context.eval(self.expr)
		for item in list:
			context.update(item)
			self.body.execute(context)