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