[pypy-commit] pypy default: Added tag release-pypy3.6-v7.2.0rc1 for changeset 4d6761df14ff

2019-10-02 Thread mattip
Author: Matti Picus Branch: Changeset: r97706:51d5d7494591 Date: 2019-10-02 10:46 +0300 http://bitbucket.org/pypy/pypy/changeset/51d5d7494591/ Log:Added tag release-pypy3.6-v7.2.0rc1 for changeset 4d6761df14ff diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags @@ -52,3 +52,4 @@ 8cd

[pypy-commit] pypy default: Issue #3084

2019-10-02 Thread arigo
Author: Armin Rigo Branch: Changeset: r97707:cd96ab5b8d1e Date: 2019-10-02 15:51 +0200 http://bitbucket.org/pypy/pypy/changeset/cd96ab5b8d1e/ Log:Issue #3084 Fix compilation error when building revdb diff --git a/rpython/translator/revdb/src-revdb/revdb_include.h b/rpython/transla

[pypy-commit] pypy release-pypy2.7-v7.x: corner case in the json decoder: like regular object maps, don't make the json

2019-10-02 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: release-pypy2.7-v7.x Changeset: r97708:6fe1105c1e17 Date: 2019-10-01 22:59 +0200 http://bitbucket.org/pypy/pypy/changeset/6fe1105c1e17/ Log:corner case in the json decoder: like regular object maps, don't make the json maps arbitrarily huge

[pypy-commit] pypy release-pypy3.6-v7.x: corner case in the json decoder: like regular object maps, don't make the json

2019-10-02 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: release-pypy3.6-v7.x Changeset: r97710:bd5961409c41 Date: 2019-10-01 22:59 +0200 http://bitbucket.org/pypy/pypy/changeset/bd5961409c41/ Log:corner case in the json decoder: like regular object maps, don't make the json maps arbitrarily huge

[pypy-commit] pypy release-pypy2.7-v7.x: Issue #3084

2019-10-02 Thread arigo
Author: Armin Rigo Branch: release-pypy2.7-v7.x Changeset: r97709:6a59a88053cc Date: 2019-10-02 15:51 +0200 http://bitbucket.org/pypy/pypy/changeset/6a59a88053cc/ Log:Issue #3084 Fix compilation error when building revdb (grafted from cd96ab5b8d1e4364105cb4a3c21a31b5dc1a5c87)

[pypy-commit] pypy release-pypy3.6-v7.x: Issue #3084

2019-10-02 Thread arigo
Author: Armin Rigo Branch: release-pypy3.6-v7.x Changeset: r97711:7fbabb23dfec Date: 2019-10-02 15:51 +0200 http://bitbucket.org/pypy/pypy/changeset/7fbabb23dfec/ Log:Issue #3084 Fix compilation error when building revdb (grafted from cd96ab5b8d1e4364105cb4a3c21a31b5dc1a5c87)

[pypy-commit] pypy py3.6-asyncgen: Add space.callable_w() method

2019-10-02 Thread rlamy
Author: Ronan Lamy Branch: py3.6-asyncgen Changeset: r97712:4fb21ab8a5c6 Date: 2019-10-02 20:50 +0100 http://bitbucket.org/pypy/pypy/changeset/4fb21ab8a5c6/ Log:Add space.callable_w() method diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspace.py --- a/pypy/interpret

[pypy-commit] pypy py3.6-asyncgen: Make asyncgen_hooks thread-local

2019-10-02 Thread rlamy
Author: Ronan Lamy Branch: py3.6-asyncgen Changeset: r97713:647cc06b34f4 Date: 2019-10-02 20:51 +0100 http://bitbucket.org/pypy/pypy/changeset/647cc06b34f4/ Log:Make asyncgen_hooks thread-local diff --git a/pypy/interpreter/executioncontext.py b/pypy/interpreter/executioncontext.py --- a/py