Larry Bates wrote:

> class myclass(baseclass):
>     def __init__(self, arg):
>         #
>         # This method gets called when I instantiate this class.
>         # If I want to call the baseclass.__init__ method I must
>         # do it myself.
>         #
>         baseclass.__init__(arg)

This is an example of polymorphism generally, not overloading.
-- 
Michael Hoffman
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to