On Jul 7, 8:08 pm, "Adam C." <[EMAIL PROTECTED]> wrote: > Thanks. I think we would want new-style classes, and 6-year-old > patches strike me as maybe a little out of the desired path... so this > really just doesn't work in modern Python?
Can you use (multiple) inheritance instead of changing the bases? Alternatively, try using an old-style class, changing the bases and subclassing it inheriting from object too: class NewStyle(OldStyle, object): pass -- http://mail.python.org/mailman/listinfo/python-list