fork download
  1. class A:
  2. def __init__(self):
  3. print "A init"
  4.  
  5.  
  6. class B(A):
  7. def __init__(self):
  8. super(B, self).__init__()
  9. print "B init";
  10.  
  11. B();
Runtime error #stdin #stdout 0.09s 10840KB
stdin
Standard input is empty
stdout
Standard output is empty