summaryrefslogtreecommitdiff
path: root/pylint/test/input/func_noerror_inner_classes.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/input/func_noerror_inner_classes.py')
-rw-r--r--pylint/test/input/func_noerror_inner_classes.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/pylint/test/input/func_noerror_inner_classes.py b/pylint/test/input/func_noerror_inner_classes.py
new file mode 100644
index 0000000..84fb43d
--- /dev/null
+++ b/pylint/test/input/func_noerror_inner_classes.py
@@ -0,0 +1,33 @@
+# pylint: disable=R0903
+"""Backend Base Classes for the schwelm user DB"""
+
+__revision__ = "alpha"
+
+class Aaa(object):
+ """docstring"""
+ def __init__(self):
+ self.__setattr__('a', 'b')
+
+
+ def one_public(self):
+ """docstring"""
+ pass
+
+ def another_public(self):
+ """docstring"""
+ pass
+
+class Bbb(Aaa):
+ """docstring"""
+ pass
+
+class Ccc(Aaa):
+ """docstring"""
+
+ class Ddd(Aaa):
+ """docstring"""
+ pass
+
+ class Eee(Ddd):
+ """docstring"""
+ pass