diff options
Diffstat (limited to 'tests/bytecode/mp-tests/if3.py')
-rw-r--r-- | tests/bytecode/mp-tests/if3.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/bytecode/mp-tests/if3.py b/tests/bytecode/mp-tests/if3.py new file mode 100644 index 0000000000..bd01514d63 --- /dev/null +++ b/tests/bytecode/mp-tests/if3.py @@ -0,0 +1,6 @@ +if a and b: + f() +if a or b: + f() +if a and (b or c): + f() |