summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/if3.py
blob: bd01514d63032fab61809a1971b65fdcc265661a (plain) (blame)
1
2
3
4
5
6
if a and b:
    f()
if a or b:
    f()
if a and (b or c):
    f()