File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -263,16 +263,16 @@ def is_operator(_t):
263
263
if TRACE_PARSE : print (' ast: token_type is TOKEN_NOT:' , repr (ast ))
264
264
265
265
elif token_type == TOKEN_AND :
266
- # if not prev_token or not is_sym(prev_token_type):
267
- # raise ParseError(token_type, token_string, token_position, PARSE_INVALID_OPERATOR_SEQUENCE)
266
+ # if not prev_token or not is_sym(prev_token_type):
267
+ # raise ParseError(token_type, token_string, token_position, PARSE_INVALID_OPERATOR_SEQUENCE)
268
268
269
269
ast = self ._start_operation (ast , self .AND , precedence )
270
270
if TRACE_PARSE :
271
271
print (' ast:token_type is TOKEN_AND: start_operation' , ast )
272
272
273
273
elif token_type == TOKEN_OR :
274
- # if not prev_token or not is_sym(prev_token_type):
275
- # raise ParseError(token_type, token_string, token_position, PARSE_INVALID_OPERATOR_SEQUENCE)
274
+ # if not prev_token or not is_sym(prev_token_type):
275
+ # raise ParseError(token_type, token_string, token_position, PARSE_INVALID_OPERATOR_SEQUENCE)
276
276
277
277
ast = self ._start_operation (ast , self .OR , precedence )
278
278
if TRACE_PARSE :
You can’t perform that action at this time.
0 commit comments