[EMAIL PROTECTED] wrote:

> class longList(shortList):
> 
>     def __init__(self):
> 
>         shortList.setList()
> 
>         self.setList()

Addition: Always call the base class __init__ in your constructor if
there exists one, i. e.

class longList(shortList)
    def __init__(self):
        shortlist.__init__()
        # [...]

Regards,


Björn

-- 
BOFH excuse #108:

The air conditioning water supply pipe ruptured over the machine
room

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to