summaryrefslogtreecommitdiff
path: root/tests/functional/d/dotted_ancestor.py
blob: 2c82d89a30af270933b2265bfe9d48a90fafd4d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
"""bla"""
# pylint: disable=no-absolute-import

from ..n.non import non_init_parent_called

__revision__ = 'yo'

class Aaaa(non_init_parent_called.AAAA):  # [too-few-public-methods]
    """test dotted name in ancestors"""
    def __init__(self):
        non_init_parent_called.AAAA.__init__(self)