Re: [pypy-dev] rlib parsing

2011-04-19 Thread Leonardo Santagada
Sorry I forgot to reply to the list. The first step would be to tell us the error you are getting. But the fastest way to solve your problems, and get help learning how to debug pypy is to join the pypy channel at freenode (IRC) On Tue, Apr 19, 2011 at 8:54 PM, Ian Overgard wrote: > That's what I

Re: [pypy-dev] rlib parsing

2011-04-19 Thread Ian Overgard
Thanks, that definitely helped. I forgot you could run arbitrary python before the entry point. I've got it parsing now, but the one issue I'm still running into is that the syntax tree that comes back has a lot of junk nodes. The ToAST.transform function will clean them up, but it seems to be not

Re: [pypy-dev] Problem with large allocation in test

2011-04-19 Thread Vincent Legoll
Hello On Tue, Apr 19, 2011 at 10:10 AM, Armin Rigo wrote: > This is a correct workaround, indeed.  As you found out the problem > comes from the fact that your OS reserves actual RAM from mmap() > eagerly.  As Maciej points out, it's useful to test e.g. jumps over > more than +/-2GB.  But the sam

Re: [pypy-dev] Problem with large allocation in test

2011-04-19 Thread Armin Rigo
Hi Joe, On Tue, Apr 19, 2011 at 8:23 AM, Maciej Fijalkowski wrote: >>> Anyway, after I went into ll2ctypes.py and set far_regions to True This is a correct workaround, indeed. As you found out the problem comes from the fact that your OS reserves actual RAM from mmap() eagerly. As Maciej point