[pypy-commit] pypy default: update values

2015-03-04 Thread mattip
Author: mattip matti.pi...@gmail.com Branch: Changeset: r76244:9093d490654c Date: 2015-03-04 18:28 +0200 http://bitbucket.org/pypy/pypy/changeset/9093d490654c/ Log:update values diff --git a/pypy/module/micronumpy/test/test_zjit.py b/pypy/module/micronumpy/test/test_zjit.py ---

[pypy-commit] pypy default: change concrete.get_storage to a context manager API, issue #1994

2015-03-04 Thread mattip
Author: mattip matti.pi...@gmail.com Branch: Changeset: r76243:5cfbc35539b9 Date: 2015-03-04 18:24 +0200 http://bitbucket.org/pypy/pypy/changeset/5cfbc35539b9/ Log:change concrete.get_storage to a context manager API, issue #1994 diff --git a/pypy/module/micronumpy/concrete.py

[pypy-commit] pypy default: more x._cdata - with x as ptr conversions

2015-03-04 Thread mattip
Author: mattip matti.pi...@gmail.com Branch: Changeset: r76245:e5ad346030ac Date: 2015-03-04 21:13 +0200 http://bitbucket.org/pypy/pypy/changeset/e5ad346030ac/ Log:more x._cdata - with x as ptr conversions diff --git a/pypy/module/cppyy/capi/loadable_capi.py

[pypy-commit] pypy default: more carefully guard access to storage by using a context manager

2015-03-04 Thread mattip
Author: mattip matti.pi...@gmail.com Branch: Changeset: r76246:6cba1a6d7ad1 Date: 2015-03-04 21:15 +0200 http://bitbucket.org/pypy/pypy/changeset/6cba1a6d7ad1/ Log:more carefully guard access to storage by using a context manager diff --git a/pypy/module/micronumpy/base.py

[pypy-commit] pypy default: Use unsafe_escaping_ptr() in this case because the pointer value is escaping.

2015-03-04 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: Changeset: r76247:19539c5ed150 Date: 2015-03-04 20:28 +0100 http://bitbucket.org/pypy/pypy/changeset/19539c5ed150/ Log:Use unsafe_escaping_ptr() in this case because the pointer value is escaping. diff --git

[pypy-commit] pypy default: Fix test after translation

2015-03-04 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: Changeset: r76237:7517b098f581 Date: 2015-03-04 10:39 +0100 http://bitbucket.org/pypy/pypy/changeset/7517b098f581/ Log:Fix test after translation diff --git a/pypy/module/sys/test/test_sysmodule.py b/pypy/module/sys/test/test_sysmodule.py ---

[pypy-commit] pypy default: some more pure op variants for int_add and int_sub where one argument is constant

2015-03-04 Thread cfbolz
Author: Carl Friedrich Bolz cfb...@gmx.de Branch: Changeset: r76238:921ec8f176f5 Date: 2015-03-04 11:52 +0100 http://bitbucket.org/pypy/pypy/changeset/921ec8f176f5/ Log:some more pure op variants for int_add and int_sub where one argument is constant This allows the

[pypy-commit] pypy default: some sanity checks about using nonsensical combinations of hints

2015-03-04 Thread cfbolz
Author: Carl Friedrich Bolz cfb...@gmx.de Branch: Changeset: r76239:ff7c259bbcc6 Date: 2015-03-04 14:55 +0100 http://bitbucket.org/pypy/pypy/changeset/ff7c259bbcc6/ Log:some sanity checks about using nonsensical combinations of hints diff --git a/rpython/rlib/jit.py b/rpython/rlib/jit.py

[pypy-commit] pypy default: add a comment

2015-03-04 Thread cfbolz
Author: Carl Friedrich Bolz cfb...@gmx.de Branch: Changeset: r76240:1200b6d0c697 Date: 2015-03-04 15:02 +0100 http://bitbucket.org/pypy/pypy/changeset/1200b6d0c697/ Log:add a comment diff --git a/rpython/rlib/jit.py b/rpython/rlib/jit.py --- a/rpython/rlib/jit.py +++ b/rpython/rlib/jit.py

[pypy-commit] pypy default: warn when using DeprecationWarning

2015-03-04 Thread cfbolz
Author: Carl Friedrich Bolz cfb...@gmx.de Branch: Changeset: r76241:d748a4ca2557 Date: 2015-03-04 15:05 +0100 http://bitbucket.org/pypy/pypy/changeset/d748a4ca2557/ Log:warn when using DeprecationWarning diff --git a/rpython/rlib/jit.py b/rpython/rlib/jit.py --- a/rpython/rlib/jit.py +++

[pypy-commit] pypy default: Kill most of the fragile keepalive_until_here() logic. Replace it with a

2015-03-04 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: Changeset: r76242:1a44b21df005 Date: 2015-03-04 15:32 +0100 http://bitbucket.org/pypy/pypy/changeset/1a44b21df005/ Log:Kill most of the fragile keepalive_until_here() logic. Replace it with a context manager API, declared on the W_CData