[pypy-commit] pypy optresult-unroll: start reworking virtualstate

2015-08-26 Thread fijal
Author: Maciej Fijalkowski Branch: optresult-unroll Changeset: r79238:ebc71358494b Date: 2015-08-27 01:21 +0200 http://bitbucket.org/pypy/pypy/changeset/ebc71358494b/ Log:start reworking virtualstate diff --git a/rpython/jit/metainterp/optimizeopt/unroll.py b/rpython/jit/metainterp/optimize

[pypy-commit] pypy default: cleanup old freebsd versions, future-proof newer ones, fixes issue #2126

2015-08-26 Thread mattip
Author: mattip Branch: Changeset: r79237:6edeb840fb4b Date: 2015-08-27 00:16 +0300 http://bitbucket.org/pypy/pypy/changeset/6edeb840fb4b/ Log:cleanup old freebsd versions, future-proof newer ones, fixes issue #2126 diff --git a/lib_pypy/ctypes_support.py b/lib_pypy/ctypes_support.py

[pypy-commit] pypy optresult-unroll: fix?

2015-08-26 Thread fijal
Author: Maciej Fijalkowski Branch: optresult-unroll Changeset: r79236:b405a035dfcb Date: 2015-08-26 23:10 +0200 http://bitbucket.org/pypy/pypy/changeset/b405a035dfcb/ Log:fix? diff --git a/rpython/jit/metainterp/optimizeopt/test/test_optimizebasic.py b/rpython/jit/metainterp/optimizeopt/tes

[pypy-commit] pypy release-2.6.x: merge default into branch

2015-08-26 Thread mattip
Author: mattip Branch: release-2.6.x Changeset: r79235:225756b155a3 Date: 2015-08-26 23:52 +0300 http://bitbucket.org/pypy/pypy/changeset/225756b155a3/ Log:merge default into branch diff --git a/LICENSE b/LICENSE --- a/LICENSE +++ b/LICENSE @@ -353,8 +353,7 @@ Except when otherwise stated (

[pypy-commit] pypy optresult-unroll: ups fix some tests

2015-08-26 Thread fijal
Author: Maciej Fijalkowski Branch: optresult-unroll Changeset: r79234:4aca476e6954 Date: 2015-08-26 22:32 +0200 http://bitbucket.org/pypy/pypy/changeset/4aca476e6954/ Log:ups fix some tests diff --git a/rpython/jit/metainterp/optimizeopt/info.py b/rpython/jit/metainterp/optimizeopt/info.py

[pypy-commit] pypy optresult-unroll: rework the tests until most of them passes. Skip one of the tests where it's not really relevant getfield vs setfield. Emit a few more guards in the short preamble

2015-08-26 Thread fijal
Author: Maciej Fijalkowski Branch: optresult-unroll Changeset: r79233:93de8af48b53 Date: 2015-08-26 22:24 +0200 http://bitbucket.org/pypy/pypy/changeset/93de8af48b53/ Log:rework the tests until most of them passes. Skip one of the tests where it's not really relevant getfield vs setfi

[pypy-commit] pypy py3.3: Implement preliminary stderr printer and use it in app_main.py.

2015-08-26 Thread mjacob
Author: Manuel Jacob Branch: py3.3 Changeset: r79232:54b7b89a7172 Date: 2015-08-26 18:06 +0200 http://bitbucket.org/pypy/pypy/changeset/54b7b89a7172/ Log:Implement preliminary stderr printer and use it in app_main.py. This is needed because during initialization of stderr imports can

[pypy-commit] pypy py3k: Fix an error at interpreter shutdown in case stdout or stderr is missing.

2015-08-26 Thread mjacob
Author: Manuel Jacob Branch: py3k Changeset: r79231:07bfad12ceb6 Date: 2015-08-26 01:57 +0200 http://bitbucket.org/pypy/pypy/changeset/07bfad12ceb6/ Log:Fix an error at interpreter shutdown in case stdout or stderr is missing. diff --git a/pypy/module/sys/__init__.py b/pypy/module/sy

[pypy-commit] stmgc use-gcc: add another question about light finalizers

2015-08-26 Thread Raemi
Author: Remi Meier Branch: use-gcc Changeset: r1946:9076b244ab08 Date: 2015-08-26 17:22 +0200 http://bitbucket.org/pypy/stmgc/changeset/9076b244ab08/ Log:add another question about light finalizers diff --git a/c8/stm/finalizer.c b/c8/stm/finalizer.c --- a/c8/stm/finalizer.c +++ b/c8/stm/fin

[pypy-commit] stmgc use-gcc: questions with failing test about finalizers

2015-08-26 Thread Raemi
Author: Remi Meier Branch: use-gcc Changeset: r1945:824bc70d6f36 Date: 2015-08-26 16:43 +0200 http://bitbucket.org/pypy/stmgc/changeset/824bc70d6f36/ Log:questions with failing test about finalizers diff --git a/c8/stm/finalizer.c b/c8/stm/finalizer.c --- a/c8/stm/finalizer.c +++ b/c8/stm/fi

[pypy-commit] cffi default: Document issue #217

2015-08-26 Thread arigo
Author: Armin Rigo Branch: Changeset: r2257:c1df0e533840 Date: 2015-08-26 09:09 +0200 http://bitbucket.org/cffi/cffi/changeset/c1df0e533840/ Log:Document issue #217 diff --git a/doc/source/whatsnew.rst b/doc/source/whatsnew.rst --- a/doc/source/whatsnew.rst +++ b/doc/source/whatsnew.rst @@

[pypy-commit] cffi default: Issue #217: use memcpy() instead of manually copying the data. On

2015-08-26 Thread arigo
Author: Armin Rigo Branch: Changeset: r2256:b8169a197564 Date: 2015-08-26 09:04 +0200 http://bitbucket.org/cffi/cffi/changeset/b8169a197564/ Log:Issue #217: use memcpy() instead of manually copying the data. On some architecture, the target is not correctly aligned for "void *". dif