summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/andor.py
blob: 4deddaf8b5a6d2a2684d57da8546e758f9faad28 (plain) (blame)
1
2
3
4
5
# test short circuit expressions outside if conditionals
print(() or 1)
print((1,) or 1)
print(() and 1)
print((1,) and 1)