John Lenton wrote:
in the code that follows, instances of E haven't been through D's
rigorous initiation process

.    class C(object):
.        def __init__(self):
.            print "C"
.
.    class D(object):
.        def __init__(self):
.            print "D"
.            super(D, self).__init__()
.
.    class E(C, D):
.        def __init__(self):
.            print "E"
.            super(E, self).__init__()


Ahh, there's the example I was looking for. =)

Thanks!

Steve
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to