E27.py 668 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # Okay
  2. from u import (a, b)
  3. from v import c, d
  4. #: E221:13
  5. from w import (e, f)
  6. #: E275:13
  7. from w import(e, f)
  8. #: E275:29
  9. from importable.module import(e, f)
  10. try:
  11. #: E275:33
  12. from importable.module import(e, f)
  13. except ImportError:
  14. pass
  15. # Okay
  16. True and False
  17. #: E221:8
  18. True and False
  19. #: E221:4
  20. True and False
  21. #: E221:2
  22. if 1:
  23. pass
  24. # Syntax Error, no indentation
  25. #: E903+1
  26. if 1:
  27. pass
  28. #: E223:8
  29. True and False
  30. #: E223:4 E223:9
  31. True and False
  32. #: E221:5
  33. a and b
  34. #: E221:5
  35. 1 and b
  36. #: E221:5
  37. a and 2
  38. #: E221:1 E221:6
  39. 1 and b
  40. #: E221:1 E221:6
  41. a and 2
  42. #: E221:4
  43. this and False
  44. #: E223:5
  45. a and b
  46. #: E223:1
  47. a and b
  48. #: E223:4 E223:9
  49. this and False