In message <[EMAIL PROTECTED]>, Fredrik Lundh wrote: > Python doesn't really have constructors; when you create an object, > Python first creates the object and then calls the __init__ method, if > available
That's the usual meaning of "constructor". It doesn't actually "construct" the object, it really "initializes" it. -- http://mail.python.org/mailman/listinfo/python-list