Re: Representation of new-style instance

2007-08-02 Thread Bjoern Schliessmann
Raj B wrote: > Which C struct in the Python implementation is used to represent > the instances c1 and c2 of the new-style class? You don't try to send this raw over some stream connection, do you? Regards, Björn -- BOFH excuse #349: Stray Alpha Particles from memory packaging caused Hard

Re: Representation of new-style instance

2007-08-02 Thread Gabriel Genellina
En Wed, 01 Aug 2007 20:14:06 -0300, Raj B <[EMAIL PROTECTED]> escribió: > Consider a new-style class > > class rabbit(object): >def __init__(self,c): > self.color = c > > r1=rabbit("blue") > r2=rabbit("purple") > > Which C struct in the Python implementation is used to represen