summaryrefslogtreecommitdiff
path: root/pylint/test/functional/super_checks.txt
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/functional/super_checks.txt')
-rw-r--r--pylint/test/functional/super_checks.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/pylint/test/functional/super_checks.txt b/pylint/test/functional/super_checks.txt
new file mode 100644
index 0000000..8e7da6c
--- /dev/null
+++ b/pylint/test/functional/super_checks.txt
@@ -0,0 +1,9 @@
+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
+super-on-old-class:12:Aaaa.__init__:Use of super on an old style class:INFERENCE
+bad-super-call:22:NewAaaa.__init__:Bad first argument 'object' 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