[pypy-commit] pypy propogate-nans: do bit manipulation to preserve, where possible, mantissa values in nan floating point conversions

2015-11-06 Thread mattip
Author: mattip Branch: propogate-nans Changeset: r80563:f9a88e6a3a0f Date: 2015-11-06 13:20 +0200 http://bitbucket.org/pypy/pypy/changeset/f9a88e6a3a0f/ Log:do bit manipulation to preserve, where possible, mantissa values in nan floating point conversions diff --git a/pypy/module/mic

[pypy-commit] pypy default: document merged branch

2015-11-06 Thread mattip
Author: mattip Branch: Changeset: r80564:6233e7f1c1ff Date: 2015-11-06 13:26 +0200 http://bitbucket.org/pypy/pypy/changeset/6233e7f1c1ff/ Log:document merged branch diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc/whatsnew-head.rst +++ b/pypy/doc/whatsnew-

[pypy-commit] pypy propogate-nans: use float2longlong and (longlong2float via casting to int64 from uint64)

2015-11-06 Thread mattip
Author: mattip Branch: propogate-nans Changeset: r80565:84b64808a037 Date: 2015-11-06 15:12 +0200 http://bitbucket.org/pypy/pypy/changeset/84b64808a037/ Log:use float2longlong and (longlong2float via casting to int64 from uint64) diff --git a/rpython/rlib/rstruct/ieee.py b/rpython/rl

[pypy-commit] pypy propogate-nans: support 32 bit (arigato)

2015-11-06 Thread mattip
Author: mattip Branch: propogate-nans Changeset: r80566:16bd20ba340b Date: 2015-11-06 15:16 +0200 http://bitbucket.org/pypy/pypy/changeset/16bd20ba340b/ Log:support 32 bit (arigato) diff --git a/rpython/rlib/rstruct/ieee.py b/rpython/rlib/rstruct/ieee.py --- a/rpython/rlib/rstruct/ieee.py ++

[pypy-commit] pypy propogate-nans: another 32 bit fix

2015-11-06 Thread mattip
Author: mattip Branch: propogate-nans Changeset: r80567:457f9caf2efa Date: 2015-11-06 16:38 +0200 http://bitbucket.org/pypy/pypy/changeset/457f9caf2efa/ Log:another 32 bit fix diff --git a/rpython/rlib/rstruct/ieee.py b/rpython/rlib/rstruct/ieee.py --- a/rpython/rlib/rstruct/ieee.py +++ b/rp

[pypy-commit] benchmarks default: add optimized lee router

2015-11-06 Thread Raemi
Author: Remi Meier Branch: Changeset: r339:08504e346e20 Date: 2015-11-06 15:47 +0100 http://bitbucket.org/pypy/benchmarks/changeset/08504e346e20/ Log:add optimized lee router This version's goal is to work well with TM. The original benchmark violated the assumption that the

[pypy-commit] cffi default: Give a warning instead of crashing; in this way we can call the next

2015-11-06 Thread arigo
Author: Armin Rigo Branch: Changeset: r2374:be44fd9b3554 Date: 2015-11-06 18:36 +0100 http://bitbucket.org/cffi/cffi/changeset/be44fd9b3554/ Log:Give a warning instead of crashing; in this way we can call the next release 1.3.1 as planned and give some advance warning to users

[pypy-commit] pypy default: Issue #2183: leak fix, untested so far

2015-11-06 Thread arigo
Author: Armin Rigo Branch: Changeset: r80568:3b433cf781c7 Date: 2015-11-06 18:54 +0100 http://bitbucket.org/pypy/pypy/changeset/3b433cf781c7/ Log:Issue #2183: leak fix, untested so far diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py --- a/pypy/module/_ssl/interp

[pypy-commit] pypy no-class-specialize: backout 26259e6794f : not useful and caused weird issues in normalizecalls.py

2015-11-06 Thread rlamy
Author: Ronan Lamy Branch: no-class-specialize Changeset: r80569:5d9032ae97f5 Date: 2015-11-06 19:07 + http://bitbucket.org/pypy/pypy/changeset/5d9032ae97f5/ Log:backout 26259e6794f : not useful and caused weird issues in normalizecalls.py diff --git a/rpython/annotator/bookkeepe

[pypy-commit] pypy default: issue 2183 -- free a buffer that OpenSSL allocates when we're done with it

2015-11-06 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r80570:3851b04286c3 Date: 2015-11-06 15:44 -0500 http://bitbucket.org/pypy/pypy/changeset/3851b04286c3/ Log:issue 2183 -- free a buffer that OpenSSL allocates when we're done with it diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ss

[pypy-commit] pypy default: issue 2183 -- free sk_DIST_POINT in SSLSocket.getpeerert()

2015-11-06 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r80571:2690aff7d7b0 Date: 2015-11-06 20:54 -0500 http://bitbucket.org/pypy/pypy/changeset/2690aff7d7b0/ Log:issue 2183 -- free sk_DIST_POINT in SSLSocket.getpeerert() diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py --- a/py