language: Python (python 2.7.3)
date: 180 days 19 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
class A(object):
    def __init__(self):
        print "A init"
 
 
class B(A):
    def __init__(self):
        A.__init__(self)
        print "B init";
 
B();