PageRenderTime 35ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/pyjs/tests/test041.py

http://pyjamas.googlecode.com/
Python | 9 lines | 9 code | 0 blank | 0 comment | 6 complexity | 43268869f83d064677e10ad4fbbef419 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
  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()