[pypy-dev] 300 bucks reward for fixing PyPy/OpenSSL issue

2012-06-13 Thread Tobias Oberstein
Hello all, I am offering a 300 $ reward to anyone fixing https://bugs.pypy.org/issue1162 We want to use Twisted on PyPy with OpenSSL on a network server involving threads, and above issue is blocking this. Anyone? Cheers, Tobias ___ pypy-dev

Re: [pypy-dev] 300 bucks reward for fixing PyPy/OpenSSL issue

2012-06-13 Thread Tobias Oberstein
Did you try with a recent nightly build? One created after this change: http://mail.python.org/pipermail/pypy-commit/2012-June/063032.html  No, I didn't .. I was using a build with last commit from 9th June .. I will try with this commit. Thx! ___

Re: [pypy-dev] CLI translate error with pypy-1.9

2012-06-13 Thread Armin Rigo
Hi David, On Tue, Jun 12, 2012 at 11:58 AM, David Naylor naylor.b.da...@gmail.com wrote: [translation:ERROR] .. (pypy.rlib.jit:557)set_param__None_enable_opts Nowadays, you cannot use the JIT with the CLI backend. Armin ___ pypy-dev mailing list

Re: [pypy-dev] CLI translate error with pypy-1.9

2012-06-13 Thread Maciej Fijalkowski
On Wed, Jun 13, 2012 at 1:06 PM, Armin Rigo ar...@tunes.org wrote: Hi David, On Tue, Jun 12, 2012 at 11:58 AM, David Naylor naylor.b.da...@gmail.com wrote: [translation:ERROR] .. (pypy.rlib.jit:557)set_param__None_enable_opts Nowadays, you cannot use the JIT with the CLI backend. Armin

Re: [pypy-dev] CLI translate error with pypy-1.9

2012-06-13 Thread Armin Rigo
Hi Fijal, On Wed, Jun 13, 2012 at 1:17 PM, Maciej Fijalkowski fij...@gmail.com wrote: That probably does not mean that someone somewhere is not calling set_param, like from command line parsing. It does mean it. At RPython level the only callers of rlib.jit.set_param() are all from

Re: [pypy-dev] CLI translate error with pypy-1.9

2012-06-13 Thread David Naylor
On Wednesday, 13 June 2012 13:06:14 Armin Rigo wrote: Hi David, On Tue, Jun 12, 2012 at 11:58 AM, David Naylor naylor.b.da...@gmail.com wrote: [translation:ERROR] .. (pypy.rlib.jit:557)set_param__None_enable_opts Nowadays, you cannot use the JIT with the CLI backend. Translating with

Re: [pypy-dev] Patches for Pypy under cygwin

2012-06-13 Thread Alexander Belopolsky
On Mon, Apr 30, 2012 at 7:05 PM, Uwe F. Mayer uwe_f_ma...@yahoo.com wrote: In particular the work-around for the tm structure to get by without the tm_gmtoff and tm_zone fields may be of interest, as it allows compilation of the rctime module on systems that don't have it, such as some versions

Re: [pypy-dev] Patches for Pypy under cygwin

2012-06-13 Thread Uwe F. Mayer
The workaround I implement is based on full-hour differences between localtime and gmtime, and uses hardcoded GMT+/-# strings. It obviously will not work correctly for timezones that have half-hour offsets to GMT, but it seemed to do the trick for what I needed. - Original Message -