/pyjs/tests/test041.py
Python | 9 lines | 9 code | 0 blank | 0 comment | 6 complexity | 43268869f83d064677e10ad4fbbef419 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
- def test():
- if foo in bar:
- do_something()
- if foo not in bar:
- do_something_else()
- if foo or bar:
- good()
- if foo and bar:
- bad()