[pypy-dev] PyPy sprint Limerick 21-27th of August

2006-07-21 Thread Beatrice During
Hi there The PyPy team goes sprinting in Limerick/Ireland - are you interested in participating? Ireland PyPy sprint 21th-27th August 2006 The next PyPy sprint will happen in the nice city of Limerick in Ireland from 21st till 27th August.

Re: [pypy-dev] translation with --profopt fails

2006-07-21 Thread Armin Rigo
Hi Elmo, On Wed, Jul 19, 2006 at 04:11:58PM +0300, Elmo M??ntynen wrote: Last lines of output (python translate.py --backend=c --profopt='-c from richards import *;main(iterations=1)' --text --batch targetpypystandalone.py): I have no clue how --profopt can affect the translation itself. You

Re: [pypy-dev] .NET build failures

2006-07-21 Thread Antonio Cuni
[EMAIL PROTECTED] wrote: Hi Antocuni, Hi Ben, I ran the .NET build last night and it got a lot further. The errors I get now are: [translation:ERROR] * FAILURE * [translation:ERROR] [translation:ERROR] c:\docume~1\ben~1.you\locals~1\temp\usession-16\main.il(66076) : error --

Re: [pypy-dev] translation with --profopt fails

2006-07-21 Thread Elmo Mäntynen
Elmo Mäntynen wrote: Armin Rigo wrote: Hi Elmo, On Wed, Jul 19, 2006 at 04:11:58PM +0300, Elmo M??ntynen wrote: Last lines of output (python translate.py --backend=c --profopt='-c from richards import *;main(iterations=1)' --text --batch targetpypystandalone.py):

[pypy-dev] Failing stackless tests

2006-07-21 Thread Armin Rigo
Hi all, hi Aurelien, The stackless-related tests are all consistently failing nowadays. Some have been failing for 4 days and others for 9 days. See http://snake.cs.uni-duesseldorf.de/pypytest/summary.html Given that you appear to continue to work on it, but without making tests pass

[pypy-dev] Newb questions about ext module writing

2006-07-21 Thread Scott Dial
Greetings everyone, I'm relatively new to PyPy. I've been aware of it for a while, but never really got into poking around at all. But recently I decided this is a project that I would like to get involved in. I think at the time I planned on doing something big, like addding a JVM backend or

Re: [pypy-dev] Newb questions about ext module writing

2006-07-21 Thread Lenard Lindstrom
On 21 Jul 2006 at 20:31, Scott Dial wrote: Furthermore, my callback functions from readline will not be passed any sort of state, so how do I get that from within my callback function? Again, I thought a poor kludge was to tag reference to state onto the function during setup_readline.