summaryrefslogtreecommitdiff
path: root/tests/functional/n/non/non_init_parent_called.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/n/non/non_init_parent_called.py')
-rw-r--r--tests/functional/n/non/non_init_parent_called.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/functional/n/non/non_init_parent_called.py b/tests/functional/n/non/non_init_parent_called.py
index 0721703b2..7a6c94ead 100644
--- a/tests/functional/n/non/non_init_parent_called.py
+++ b/tests/functional/n/non/non_init_parent_called.py
@@ -1,20 +1,19 @@
# pylint: disable=protected-access,import-self,too-few-public-methods,line-too-long
-# pylint: disable=wrong-import-order, useless-object-inheritance, unnecessary-dunder-call
+# pylint: disable=wrong-import-order, unnecessary-dunder-call
"""test for call to __init__ from a non ancestor class
"""
-from __future__ import print_function
from . import non_init_parent_called
import nonexistant # [import-error]
-__revision__ = '$Id: non_init_parent_called.py,v 1.2 2004-09-29 08:35:13 syt Exp $'
-class AAAA(object):
+
+class AAAA:
"""ancestor 1"""
def __init__(self):
print('init', self)
BBBBMixin.__init__(self) # [non-parent-init-called]
-class BBBBMixin(object):
+class BBBBMixin:
"""ancestor 2"""
def __init__(self):