summaryrefslogtreecommitdiff
path: root/artima/python/library_not_using_super.py
blob: c2fe608fdf58a3739a2b524b0972b85d6a691a60 (plain)
1
2
3
4
5
6
7
8
9
# library_not_using_super

class A(object):
    def __init__(self):
        print "A",

class B(object):
    def __init__(self):
        print "B",