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.

super_checks.txt 1.8KB

123456789101112131415161718192021
  1. old-style-class:6:Aaaa:Old-style class defined.
  2. super-on-old-class:8:Aaaa.hop:Use of super on an old style class
  3. no-member:10:Aaaa.hop:Super of 'Aaaa' has no 'hop' member:INFERENCE
  4. super-on-old-class:12:Aaaa.__init__:Use of super on an old style class
  5. no-member:19:NewAaaa.hop:Super of 'NewAaaa' has no 'hop' member:INFERENCE
  6. bad-super-call:22:NewAaaa.__init__:Bad first argument 'Aaaa' given to super()
  7. missing-super-argument:27:Py3kAaaa.__init__:Missing argument to super()
  8. bad-super-call:32:Py3kWrongSuper.__init__:Bad first argument 'NewAaaa' given to super()
  9. bad-super-call:37:WrongNameRegression.__init__:Bad first argument 'Missing' given to super()
  10. bad-super-call:46:CrashSuper.__init__:Bad first argument 'NewAaaa' given to super()
  11. bad-super-call:62:SuperDifferentScope.test:Bad first argument 'object' given to super()
  12. bad-super-call:70:UnknownBases.__init__:Bad first argument 'Missing' given to super()
  13. not-callable:89:InvalidSuperChecks.__init__:super(InvalidSuperChecks, self).not_a_method is not callable
  14. no-member:90:InvalidSuperChecks.__init__:Super of 'InvalidSuperChecks' has no 'attribute_error' member:INFERENCE
  15. no-value-for-parameter:92:InvalidSuperChecks.__init__:No value for argument 'param' in method call
  16. too-many-function-args:93:InvalidSuperChecks.__init__:Too many positional arguments for method call
  17. no-value-for-parameter:95:InvalidSuperChecks.__init__:No value for argument 'param' in method call
  18. unexpected-keyword-arg:95:InvalidSuperChecks.__init__:Unexpected keyword argument 'lala' in method call
  19. no-member:98:InvalidSuperChecks.__init__:Super of 'InvalidSuperChecks' has no 'attribute_error' member:INFERENCE
  20. bad-super-call:120:SuperWithType.__init__:Bad first argument 'type' given to super()
  21. bad-super-call:125:SuperWithSelfClass.__init__:Bad first argument 'self.__class__' given to super()