diff --git a/test/expressions/expr20.py b/test/expressions/expr20.py new file mode 100644 index 00000000..fd081bb9 --- /dev/null +++ b/test/expressions/expr20.py @@ -0,0 +1,39 @@ +a == b +a != b +a < b +a <= b +a > b +a >= b + + + +a : source.python + : source.python +== : keyword.operator.comparison.python, source.python + : source.python +b : source.python +a : source.python + : source.python +!= : keyword.operator.comparison.python, source.python + : source.python +b : source.python +a : source.python + : source.python +< : keyword.operator.comparison.python, source.python + : source.python +b : source.python +a : source.python + : source.python +<= : keyword.operator.comparison.python, source.python + : source.python +b : source.python +a : source.python + : source.python +> : keyword.operator.comparison.python, source.python + : source.python +b : source.python +a : source.python + : source.python +>= : keyword.operator.comparison.python, source.python + : source.python +b : source.python