Re: Threading.py Class Syntax and Super

2009-09-16 Thread Carl Banks
On Sep 16, 3:23 am, Casey wrote: > I noticed that the many (if not all) classes in threading.py[1] all > inherit from object, yet non of the init methods call super(). I am > curious as to why this is the chosen implementation? If the benefit of > new-style classes is to support multiple inheritan

Re: Threading.py Class Syntax and Super

2009-09-16 Thread Michele Simionato
On Sep 16, 12:23 pm, Casey wrote: > Hi, > > I noticed that the many (if not all) classes in threading.py[1] all > inherit from object, yet non of the init methods call super(). I am > curious as to why this is the chosen implementation? If the benefit of > new-style classes is to support multiple

Threading.py Class Syntax and Super

2009-09-16 Thread Casey
Hi, I noticed that the many (if not all) classes in threading.py[1] all inherit from object, yet non of the init methods call super(). I am curious as to why this is the chosen implementation? If the benefit of new-style classes is to support multiple inheritance, then isn't this "broken" if the c