Re: Pb with __del__ and inheritence

2007-03-07 Thread Gabriel Genellina
En Wed, 07 Mar 2007 07:35:05 -0300, Erwan Adam <[EMAIL PROTECTED]> escribió: > Can someone reproduce this bug ... I use : Same on 2.5 Windows. > class XObject(object): > > def __del__(self): > print "XObject.__del__" > return > > pass > > class A(XObject): > > d

Pb with __del__ and inheritence

2007-03-07 Thread Erwan Adam
Hello all, Can someone reproduce this bug ... I use : [EMAIL PROTECTED] /home/adam/Work/Python]> python Python 2.4.3 (#2, Sep 18 2006, 21:07:35) [GCC 4.1.1 20060724 (prerelease) (4.1.1-3mdk)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> First test : [EMA