Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

nonexistent_operator.py 319B

123456789101112131415
  1. """check operator use"""
  2. # pylint: disable=invalid-name, pointless-statement
  3. a = 1
  4. a += 5
  5. a = +a
  6. b = ++a # [nonexistent-operator]
  7. ++a # [nonexistent-operator]
  8. c = (++a) * b # [nonexistent-operator]
  9. a = 1
  10. a -= 5
  11. b = --a # [nonexistent-operator]
  12. b = a
  13. --a # [nonexistent-operator]
  14. c = (--a) * b # [nonexistent-operator]