From: Riaan B. <riaan@e.co.za> - 2002-01-30 22:14:15
|
Hi Mike, these are bugs in Boa. This is what's happening: class A: def m(self): pass class B(A): def m(self): A.m(self) class C(B): def m(self): A.m(self) c = C() c.m() This snippet use to be work under Python >= 2.1 (although it is usually a copy paste error) but doesn't under Python 2.2. As I've said on the Boa list, I hope to release Boa 0.1.1 soon, as there are a few places in the code base this problem occurs. -- Riaan Booysen ___________________________________________________ Boa Constructor - RAD GUI building IDE for wxPython http://boa-constructor.sourceforge.net |