In Python, how do you make a subclass from a superclass?
class MySubClass(MySuperClass): def __init__(self): MySuperClass.__init__(self) #
The section on inheritance in the python documentation explains it in more detail