[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.

Re: super() and multiple inheritance

2005-12-01 Thread hermy
Carl Banks schreef: hermy wrote: 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