diff options
Diffstat (limited to 'tests/bytecode/mp-tests/compare1.py')
-rw-r--r-- | tests/bytecode/mp-tests/compare1.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/bytecode/mp-tests/compare1.py b/tests/bytecode/mp-tests/compare1.py new file mode 100644 index 0000000000..32ba43e3bf --- /dev/null +++ b/tests/bytecode/mp-tests/compare1.py @@ -0,0 +1,8 @@ +if 1 <= x <= 5: + f() + +if 1 <= x <= y <= 7: + f() + +if a < b > c in l != c is not d: + f() |