次のようなものがあります(簡易版)
class ParseClass(object):
def __init__(self, tokens):
# do some processing on tokens
expr = Word().setParseAction(ParseClass)
ParseClass のinit関数にユーザー定義の引数を送信する方法はありますか? いくつかのコンテキストなどのように。だから私は-
class ParseClass(object):
def __init__(self, tokens, context):
# do some processing on tokens based on context
expr = Word().setParseAction(ParseClass, context)
これは可能ですか?