2
我有類似以下(簡體版)通過用戶定義的參數setParseAction在pyparsing
class ParseClass(object):
def __init__(self, tokens):
# do some processing on tokens
expr = Word().setParseAction(ParseClass)
有沒有辦法把一些用戶自定義的參數ParseClass的初始化功能?像一些上下文等,所以我會 -
class ParseClass(object):
def __init__(self, tokens, context):
# do some processing on tokens based on context
expr = Word().setParseAction(ParseClass, context)
這可能嗎?
這應該只是罰款。 – PaulMcG
@PaulMcGuire - 很高興知道我不在左場。 – mgilson