[pypy-commit] pypy s390x-backend: first loop correctly assembled. it is correctly entered, correctly calulating the counter variable and cleanly exiting back to the VM

2015-11-02 Thread plan_rich
Author: Richard Plangger Branch: s390x-backend Changeset: r80497:6fbf6c1ae931 Date: 2015-11-02 10:43 +0100 http://bitbucket.org/pypy/pypy/changeset/6fbf6c1ae931/ Log:first loop correctly assembled. it is correctly entered, correctly calulating the counter variable and cleanly exiting

[pypy-commit] pypy default: Issue #2180: fix. The problem shows up as missing 'same_as', and these

2015-11-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r80498:dfb609e46b95 Date: 2015-11-02 11:16 + http://bitbucket.org/pypy/pypy/changeset/dfb609e46b95/ Log:Issue #2180: fix. The problem shows up as missing 'same_as', and these places pass for some reason an empty list instead of 'extra

[pypy-commit] pypy s390x-backend: adding trap2 instruction, skeletal structure to assemble a bridge, allocating additional space in pool if a 64bit jump is needed (e.g. bridge jump to loop token of al

2015-11-02 Thread plan_rich
Author: Richard Plangger Branch: s390x-backend Changeset: r80499:468121ce68fa Date: 2015-11-02 12:25 +0100 http://bitbucket.org/pypy/pypy/changeset/468121ce68fa/ Log:adding trap2 instruction, skeletal structure to assemble a bridge, allocating additional space in pool if a 64bit jump

[pypy-commit] pypy default: test, fix failure in ndarray creation from list of unicodes

2015-11-02 Thread mattip
Author: mattip Branch: Changeset: r80500:058bbfa7fe93 Date: 2015-11-02 14:39 +0200 http://bitbucket.org/pypy/pypy/changeset/058bbfa7fe93/ Log:test, fix failure in ndarray creation from list of unicodes diff --git a/pypy/module/micronumpy/ndarray.py b/pypy/module/micronumpy/ndarray.py --- a/

[pypy-commit] pypy default: document branch

2015-11-02 Thread mattip
Author: mattip Branch: Changeset: r80501:7b27fd1568e6 Date: 2015-11-02 14:48 +0200 http://bitbucket.org/pypy/pypy/changeset/7b27fd1568e6/ Log:document 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-head.rst

[pypy-commit] cffi default: Fix the error we get for 'int f(unknown_type); '

2015-11-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r2363:e6500be6fdfb Date: 2015-11-02 16:17 +0100 http://bitbucket.org/cffi/cffi/changeset/e6500be6fdfb/ Log:Fix the error we get for 'int f(unknown_type);' diff --git a/cffi/cparser.py b/cffi/cparser.py --- a/cffi/cparser.py +++ b/cffi/cparser.py @@ -456

[pypy-commit] pypy default: test, fix __array_interface__ for non-compliant keys and values

2015-11-02 Thread mattip
Author: mattip Branch: Changeset: r80502:62330b3e9b7f Date: 2015-11-02 16:39 +0200 http://bitbucket.org/pypy/pypy/changeset/62330b3e9b7f/ Log:test, fix __array_interface__ for non-compliant keys and values diff --git a/pypy/module/micronumpy/ctors.py b/pypy/module/micronumpy/ctors.py --- a/p

[pypy-commit] pypy default: remove leftover line

2015-11-02 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r80504:0071c13198cf Date: 2015-11-02 21:44 +0100 http://bitbucket.org/pypy/pypy/changeset/0071c13198cf/ Log:remove leftover line diff --git a/pypy/objspace/std/setobject.py b/pypy/objspace/std/setobject.py --- a/pypy/objspace/std/setobject.py +

[pypy-commit] pypy default: generators are a bit broken

2015-11-02 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r80505:f25d33c5dcec Date: 2015-11-02 21:44 +0100 http://bitbucket.org/pypy/pypy/changeset/f25d33c5dcec/ Log:generators are a bit broken diff --git a/rpython/rtyper/test/test_generator.py b/rpython/rtyper/test/test_generator.py --- a/rpython/rt

[pypy-commit] pypy default: hopefully fix the set failures

2015-11-02 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r80503:175220886e4c Date: 2015-11-02 21:32 +0100 http://bitbucket.org/pypy/pypy/changeset/175220886e4c/ Log:hopefully fix the set failures (there's some weird other problem) diff --git a/pypy/objspace/std/setobject.py b/pypy/objspace/s

[pypy-commit] cffi default: Found a pycparser issue. Work around it by adding some parentheses in

2015-11-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r2365:97315bc352f8 Date: 2015-11-02 22:22 +0100 http://bitbucket.org/cffi/cffi/changeset/97315bc352f8/ Log:Found a pycparser issue. Work around it by adding some parentheses in the csource passed to it, to avoid the buggy cases. diff --git a/cff

[pypy-commit] cffi default: Propagate "volatile" in addition to "const" and "restrict"

2015-11-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r2364:996827b4ddcd Date: 2015-11-02 21:27 +0100 http://bitbucket.org/cffi/cffi/changeset/996827b4ddcd/ Log:Propagate "volatile" in addition to "const" and "restrict" diff --git a/cffi/cparser.py b/cffi/cparser.py --- a/cffi/cparser.py +++ b/cffi/cparser

[pypy-commit] cffi default: Found out that the pycparser problem was fixed between 2.10 and 2.14.

2015-11-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r2366:b74bf1aad694 Date: 2015-11-02 22:46 +0100 http://bitbucket.org/cffi/cffi/changeset/b74bf1aad694/ Log:Found out that the pycparser problem was fixed between 2.10 and 2.14. diff --git a/cffi/cparser.py b/cffi/cparser.py --- a/cffi/cparser.py

[pypy-commit] cffi default: Issue #228: "bool" not working in out-of-line FFI objects. Same problem

2015-11-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r2367:bcbbce0b1d78 Date: 2015-11-02 23:12 +0100 http://bitbucket.org/cffi/cffi/changeset/bcbbce0b1d78/ Log:Issue #228: "bool" not working in out-of-line FFI objects. Same problem with all Windows common types. Mostly fixed by moving the l

[pypy-commit] pypy propogate-nans: porpogate various nan values across float conversions

2015-11-02 Thread mattip
Author: mattip Branch: propogate-nans Changeset: r80508:ebaf0b23194a Date: 2015-11-03 04:42 +0200 http://bitbucket.org/pypy/pypy/changeset/ebaf0b23194a/ Log:porpogate various nan values across float conversions diff --git a/pypy/module/micronumpy/test/test_ndarray.py b/pypy/module/micronump

[pypy-commit] pypy default: whoops, syntax error

2015-11-02 Thread mattip
Author: mattip Branch: Changeset: r80507:e4f6d787123a Date: 2015-11-03 04:36 +0200 http://bitbucket.org/pypy/pypy/changeset/e4f6d787123a/ Log:whoops, syntax error diff --git a/pypy/module/micronumpy/test/test_ndarray.py b/pypy/module/micronumpy/test/test_ndarray.py --- a/pypy/module/micron

[pypy-commit] cffi default: Issue #228: do the same for "FILE". Only remaining case now is the

2015-11-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r2368:8b042b8ebb63 Date: 2015-11-03 08:47 +0100 http://bitbucket.org/cffi/cffi/changeset/8b042b8ebb63/ Log:Issue #228: do the same for "FILE". Only remaining case now is the very obscure Windows type UNICODE_STRING. I think it is unlikely