我们从Python开源项目中,提取了以下1个代码示例,用于说明如何使用ply.lex.TOKEN。
def t_STRING_LITERAL(self, t): col = t.value[0] value = t.value[1:-1].replace("\\%s"%col, col) t.value = value return t # @TOKEN(bad_string_literal) # def t_BAD_STRING_LITERAL(self, t): # self._error("????????????", t)