PageRenderTime 44ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/python/testData/codeInsight/controlflow/while.py

http://github.com/JetBrains/intellij-community
Python | 19 lines | 17 code | 2 blank | 0 comment | 7 complexity | fa5b12ca54a18f2eb298ecd1f3398b99 MD5 | raw file
Possible License(s): BSD-3-Clause, Apache-2.0, MPL-2.0-no-copyleft-exception, MIT, EPL-1.0, AGPL-1.0
  1. while c1:
  2. x = 1
  3. else:
  4. y = 1
  5. while c2:
  6. a = 1
  7. break
  8. b = 1
  9. else:
  10. c = 1
  11. while c3:
  12. m = 1
  13. if m:
  14. break
  15. n = 1
  16. else:
  17. o = 1