Re: [newbie] super() and multiple inheritance

2005-12-01 Thread Steven Bethard
hermy wrote: > As I understand it, using super() is the preferred way to call > the next method in method-resolution-order. When I have parameterless > __init__ methods, this works as expected. > However, how do you solve the following simple multiple inheritance > situation in python ? > > class

[newbie] super() and multiple inheritance

2005-12-01 Thread hermy
Hi, I'm trying to figure out how to pass constructor arguments to my superclasses in a multiple inheritance situation. As I understand it, using super() is the preferred way to call the next method in method-resolution-order. When I have parameterless __init__ methods, this works as expected. Howe