예제 #1
0
파일: exprmisc.py 프로젝트: abozio/Myliam2
 def __init__(self, expr1, expr2, expr3):
     CompoundExpression.__init__(self)
     self.expr1 = expr1
     self.expr2 = expr2
     self.expr3 = expr3
예제 #2
0
파일: exprmisc.py 프로젝트: abozio/Myliam2
 def __init__(self, *args):
     CompoundExpression.__init__(self)
     assert len(args) >= 2
     self.args = args
예제 #3
0
 def __init__(self, expr):
     CompoundExpression.__init__(self)
     self.expr = expr
     self.u_varname = get_tmp_varname()
예제 #4
0
 def __init__(self, expr, filter=None):
     CompoundExpression.__init__(self)
     self.expr = expr
     self.filter = filter
예제 #5
0
파일: exprmisc.py 프로젝트: AnneDy/Til-Liam
 def __init__(self, expr):
     CompoundExpression.__init__(self)
     self.expr = expr
예제 #6
0
파일: exprmisc.py 프로젝트: AnneDy/Til-Liam
 def __init__(self, expr, expr_min, expr_max):
     CompoundExpression.__init__(self)
     self.expr = expr
     self.expr_min = expr_min
     self.expr_max = expr_max