/pyjs/tests/test041.py

http://pyjamas.googlecode.com/ · Python · 9 lines · 9 code · 0 blank · 0 comment · 6 complexity · 43268869f83d064677e10ad4fbbef419 MD5 · raw file

  1. def test():
  2. if foo in bar:
  3. do_something()
  4. if foo not in bar:
  5. do_something_else()
  6. if foo or bar:
  7. good()
  8. if foo and bar:
  9. bad()