Gabriel Genellina escreveu: ... > Just omit the __init__ method, if you don't have anything additional to > do. The inherited method will be used instead, as always:
Then, if I have something additional, I can do
def __init__(self,l=None):
if l!=None:
list.__init__(self,l)
...
Good! This is great!
Thanks.
--
http://mail.python.org/mailman/listinfo/python-list
