コード例 #1
0
ファイル: whitespace.py プロジェクト: loiol/practice
class Whitespace(object):

    def __init__(self, source):
        self.interpreter = Interpreter(code=source)

    def evaluate(self, *, context=None):
        self.interpreter.evaluate(context=context)
コード例 #2
0
ファイル: whitespace.py プロジェクト: loiol/practice
 def __init__(self, source):
     self.interpreter = Interpreter(code=source)