我有类似以下的内容(简化版)
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)
这可能吗?