[pypy-commit] pypy improve-vmprof-testing: Tentative proper fix for stacklet+vmprof

2016-08-08 Thread arigo
Author: Armin Rigo Branch: improve-vmprof-testing Changeset: r86092:68cb0f468f13 Date: 2016-08-08 19:55 +0200 http://bitbucket.org/pypy/pypy/changeset/68cb0f468f13/ Log:Tentative proper fix for stacklet+vmprof diff --git a/rpython/rlib/rstacklet.py

[pypy-commit] pypy mappingproxy: Close branch mappingproxy

2016-08-08 Thread rlamy
Author: Ronan Lamy Branch: mappingproxy Changeset: r86090:61f6e395e2e4 Date: 2016-08-08 18:48 +0100 http://bitbucket.org/pypy/pypy/changeset/61f6e395e2e4/ Log:Close branch mappingproxy ___ pypy-commit mailing list

[pypy-commit] pypy py3k: Merged in mappingproxy (pull request #469)

2016-08-08 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r86091:25c8dc3d6d4c Date: 2016-08-08 18:48 +0100 http://bitbucket.org/pypy/pypy/changeset/25c8dc3d6d4c/ Log:Merged in mappingproxy (pull request #469) Fix the mappingproxy type to behave as in CPython and consolidate

[pypy-commit] pypy mappingproxy: Update description of dictproxyobject.py

2016-08-08 Thread rlamy
Author: Ronan Lamy Branch: mappingproxy Changeset: r86089:d751064b79e4 Date: 2016-08-08 18:45 +0100 http://bitbucket.org/pypy/pypy/changeset/d751064b79e4/ Log:Update description of dictproxyobject.py diff --git a/pypy/objspace/std/dictproxyobject.py

[pypy-commit] pypy improve-vmprof-testing: We get nonsense with stacklets, but avoid crashing, at least

2016-08-08 Thread arigo
Author: Armin Rigo Branch: improve-vmprof-testing Changeset: r86087:e39187569474 Date: 2016-08-08 15:08 +0200 http://bitbucket.org/pypy/pypy/changeset/e39187569474/ Log:We get nonsense with stacklets, but avoid crashing, at least diff --git a/rpython/rlib/rvmprof/cintf.py

[pypy-commit] pypy improve-vmprof-testing: JIT fix: make '_vmprof_unique_id' an immutable field; I think

2016-08-08 Thread arigo
Author: Armin Rigo Branch: improve-vmprof-testing Changeset: r86088:e09e83478469 Date: 2016-08-08 19:07 +0200 http://bitbucket.org/pypy/pypy/changeset/e09e83478469/ Log:JIT fix: make '_vmprof_unique_id' an immutable field; I think decorated_function() reads it all

[pypy-commit] pypy default: fix test, realloc frees the input ptr if it is realloc() ed

2016-08-08 Thread mattip
Author: Matti Picus Branch: Changeset: r86086:cffad389be1e Date: 2016-08-08 20:07 +0300 http://bitbucket.org/pypy/pypy/changeset/cffad389be1e/ Log:fix test, realloc frees the input ptr if it is realloc() ed diff --git a/pypy/module/cpyext/test/test_object.py

[pypy-commit] pypy py3.5-async: remove setup_class in test_asyncio, make better use of test_gil_issue

2016-08-08 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86085:9faaeb88a806 Date: 2016-08-08 19:02 +0200 http://bitbucket.org/pypy/pypy/changeset/9faaeb88a806/ Log:remove setup_class in test_asyncio, make better use of test_gil_issue diff --git

[pypy-commit] pypy guard-compatible: make _type_issubtype function actually elidable

2016-08-08 Thread cfbolz
Author: Carl Friedrich Bolz Branch: guard-compatible Changeset: r86084:8bfdd10930a7 Date: 2016-08-08 18:47 +0200 http://bitbucket.org/pypy/pypy/changeset/8bfdd10930a7/ Log:make _type_issubtype function actually elidable diff --git a/pypy/objspace/std/mapdict.py

[pypy-commit] pypy guard-compatible: fix test_dictmultiobject.py

2016-08-08 Thread cfbolz
Author: Carl Friedrich Bolz Branch: guard-compatible Changeset: r86083:f1fe34175fc1 Date: 2016-08-05 18:28 +0200 http://bitbucket.org/pypy/pypy/changeset/f1fe34175fc1/ Log:fix test_dictmultiobject.py diff --git a/pypy/objspace/std/dictmultiobject.py

[pypy-commit] pypy guard-compatible: make using objects as keys in dicts/in sets not read their types

2016-08-08 Thread cfbolz
Author: Carl Friedrich Bolz Branch: guard-compatible Changeset: r86082:71a4e8e68f14 Date: 2016-07-07 18:33 +0200 http://bitbucket.org/pypy/pypy/changeset/71a4e8e68f14/ Log:make using objects as keys in dicts/in sets not read their types diff --git

[pypy-commit] pypy guard-compatible: fix fake jit_debug ops

2016-08-08 Thread cfbolz
Author: Carl Friedrich Bolz Branch: guard-compatible Changeset: r86081:12edeb760312 Date: 2016-07-06 17:49 +0200 http://bitbucket.org/pypy/pypy/changeset/12edeb760312/ Log:fix fake jit_debug ops diff --git a/rpython/jit/metainterp/compatible.py

[pypy-commit] pypy guard-compatible: since b116f09c4e9d we can no longer clear the last_quasi_immut_field_op in the GuardCompatibleDescr

2016-08-08 Thread cfbolz
Author: Carl Friedrich Bolz Branch: guard-compatible Changeset: r86080:9e5474cdc047 Date: 2016-06-30 19:48 +0200 http://bitbucket.org/pypy/pypy/changeset/9e5474cdc047/ Log:since b116f09c4e9d we can no longer clear the last_quasi_immut_field_op in the

[pypy-commit] pypy guard-compatible: fix translation

2016-08-08 Thread cfbolz
Author: Carl Friedrich Bolz Branch: guard-compatible Changeset: r86078:f12312dfba23 Date: 2016-06-30 19:35 +0200 http://bitbucket.org/pypy/pypy/changeset/f12312dfba23/ Log:fix translation diff --git a/rpython/jit/metainterp/logger.py b/rpython/jit/metainterp/logger.py ---

[pypy-commit] pypy guard-compatible: fix a bug around logging ops

2016-08-08 Thread cfbolz
Author: Carl Friedrich Bolz Branch: guard-compatible Changeset: r86079:464652309dcc Date: 2016-06-30 19:35 +0200 http://bitbucket.org/pypy/pypy/changeset/464652309dcc/ Log:fix a bug around logging ops diff --git a/rpython/jit/metainterp/compile.py

[pypy-commit] pypy py3.5-async: Add test for asyncio checking a GIL initialization error on running "await asyncio.open_connection"

2016-08-08 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r86077:3e98b6f5791a Date: 2016-08-08 18:00 +0200 http://bitbucket.org/pypy/pypy/changeset/3e98b6f5791a/ Log:Add test for asyncio checking a GIL initialization error on running "await

[pypy-commit] pypy ppc-vsx-support: added unpack/pack test stressing the operation

2016-08-08 Thread plan_rich
Author: Richard Plangger Branch: ppc-vsx-support Changeset: r86076:b6f69665e955 Date: 2016-08-08 13:34 +0200 http://bitbucket.org/pypy/pypy/changeset/b6f69665e955/ Log:added unpack/pack test stressing the operation diff --git a/rpython/jit/backend/ppc/vector_ext.py

[pypy-commit] pypy improve-vmprof-testing: Improve the test, fix by adding another missing case

2016-08-08 Thread arigo
Author: Armin Rigo Branch: improve-vmprof-testing Changeset: r86075:d58a138573e9 Date: 2016-08-08 08:54 +0200 http://bitbucket.org/pypy/pypy/changeset/d58a138573e9/ Log:Improve the test, fix by adding another missing case diff --git