Re: [pypy-dev] a possible leak in the object namespace...

2010-12-01 Thread Alex A. Naanou
On Tue, Nov 30, 2010 at 20:33, Carl Friedrich Bolz wrote: > Hi Alex, > > On 11/29/2010 09:02 PM, Alex A. Naanou wrote: >> >> On Mon, Nov 29, 2010 at 21:46, Carl Friedrich Bolz  wrote: > > [snip] >>> >>>  a) lots of attributes, which we expect to be ra

Re: [pypy-dev] a possible leak in the object namespace...

2010-11-29 Thread Alex A. Naanou
On Mon, Nov 29, 2010 at 23:02, Alex A. Naanou wrote: > On Mon, Nov 29, 2010 at 21:46, Carl Friedrich Bolz wrote: >> Hi Alex, >> >> On 11/29/2010 03:04 PM, Alex A. Naanou wrote: >>> With the release of version 1.4, I decided to test these usecases out >>> an

Re: [pypy-dev] a possible leak in the object namespace...

2010-11-29 Thread Alex A. Naanou
On Mon, Nov 29, 2010 at 21:46, Carl Friedrich Bolz wrote: > Hi Alex, > > On 11/29/2010 03:04 PM, Alex A. Naanou wrote: >> With the release of version 1.4, I decided to test these usecases out >> and benchmark them on PyPy and 15 minutes later I got results that >> were

[pypy-dev] a possible leak in the object namespace...

2010-11-29 Thread Alex A. Naanou
Hi All, Decided to test the 1.4 with a couple of my usecases, got quite surprising results... To keep it short, I have several usecases that involve replacing the object dictionary. Here's a simple example: ---cut--- class D(dict): def __setitem__(self, key, value): pri