diff options
Diffstat (limited to 'test/input/func_dotted_ancestor.py')
-rw-r--r-- | test/input/func_dotted_ancestor.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/input/func_dotted_ancestor.py b/test/input/func_dotted_ancestor.py new file mode 100644 index 0000000..2d2f571 --- /dev/null +++ b/test/input/func_dotted_ancestor.py @@ -0,0 +1,11 @@ +"""bla""" + +__revision__ = 'yo' + + +from input import func_w0233 + +class Aaaa(func_w0233.AAAA): + """test dotted name in ancestors""" + def __init__(self): + func_w0233.AAAA.__init__(self) |