summaryrefslogtreecommitdiff
path: root/test/input/func_r0902.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/input/func_r0902.py')
-rw-r--r--test/input/func_r0902.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/input/func_r0902.py b/test/input/func_r0902.py
new file mode 100644
index 000000000..59d4100c5
--- /dev/null
+++ b/test/input/func_r0902.py
@@ -0,0 +1,28 @@
+# pylint: disable-msg=R0903
+"""test max instance attributes"""
+__revision__ = None
+
+class Aaaa:
+ """yo"""
+ def __init__(self):
+ self.aaaa = 1
+ self.bbbb = 2
+ self.cccc = 3
+ self.dddd = 4
+ self.eeee = 5
+ self.ffff = 6
+ self.gggg = 7
+ self.hhhh = 8
+ self.iiii = 9
+ self.jjjj = 10
+ self._aaaa = 1
+ self._bbbb = 2
+ self._cccc = 3
+ self._dddd = 4
+ self._eeee = 5
+ self._ffff = 6
+ self._gggg = 7
+ self._hhhh = 8
+ self._iiii = 9
+ self._jjjj = 10
+ self.tomuch = None