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