I am unable to use super in Python 2.7.9; is it possible to use it? Code I have been trying:
class Base():
   def __init__(self):
      print "It's a Base"
class Secondary(Base):
   def __init__(self):
      super(Secondary,self).__init__()
Secondary()
Error:
Must be type not classobj
 
    