summaryrefslogtreecommitdiff
path: root/test/input/func_noerror_inner_classes.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/input/func_noerror_inner_classes.py')
-rw-r--r--test/input/func_noerror_inner_classes.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/test/input/func_noerror_inner_classes.py b/test/input/func_noerror_inner_classes.py
new file mode 100644
index 000000000..a1a848dec
--- /dev/null
+++ b/test/input/func_noerror_inner_classes.py
@@ -0,0 +1,33 @@
+# pylint: disable-msg=R0903
+"""Backend Base Classes for the schwelm user DB"""
+
+__revision__ = "alpha"
+
+class Aaa(object):
+ """docstring"""
+ def __init__(self):
+ self.__setattr__('a','b')
+ pass
+
+ 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