Re: want some python ide
Hi, look for SciTE http://www.scintilla.org/SciTE.html it is small, fast and lightweight Alex Greif http://www.fotobuch-xxl.de/ D H wrote: > [EMAIL PROTECTED] wrote: > > i want some python ide use pygtk > > eric3 is good for me ,but i lik
multiple inharitance super() question
(A,AA): def __init__(self, args): super(B, self).__init__(args) How can I tell that B.__init__() should initialize A and AA? Or is the new super() so clever to call A.__init__() and AA.__init__() internally? thanks, Alex Greif http