[pypy-commit] pypy py3.6: merge

2018-05-26 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.6 Changeset: r94686:807d5baaba0b Date: 2018-05-26 14:11 +0200 http://bitbucket.org/pypy/pypy/changeset/807d5baaba0b/ Log:merge diff --git a/pypy/interpreter/pyparser/test/test_pyparse.py b/pypy/interpreter/pyparser/test/test_pyparse.py --- a/p

[pypy-commit] pypy py3.6: fix raises

2018-05-26 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.6 Changeset: r94685:a26f84e38118 Date: 2018-05-21 14:13 +0200 http://bitbucket.org/pypy/pypy/changeset/a26f84e38118/ Log:fix raises diff --git a/pypy/interpreter/pyparser/test/test_pyparse.py b/pypy/interpreter/pyparser/test/test_pyparse.py --

[pypy-commit] pypy default: Fix test_reverse_debugging

2018-05-26 Thread arigo
Author: Armin Rigo Branch: Changeset: r94687:24dc51e3f099 Date: 2018-05-26 14:18 +0200 http://bitbucket.org/pypy/pypy/changeset/24dc51e3f099/ Log:Fix test_reverse_debugging diff --git a/pypy/interpreter/test/test_reverse_debugging.py b/pypy/interpreter/test/test_reverse_debugging.py --- a/

[pypy-commit] pypy default: Translation fix on Windows (for "inline" in signals.h)

2018-05-26 Thread arigo
Author: Armin Rigo Branch: Changeset: r94688:e6a28f470244 Date: 2018-05-26 14:23 +0200 http://bitbucket.org/pypy/pypy/changeset/e6a28f470244/ Log:Translation fix on Windows (for "inline" in signals.h) diff --git a/rpython/translator/c/src/precommondefs.h b/rpython/translator/c/src/precommo

[pypy-commit] pypy py3.6: calling subtypes of type with one arg is not supported any more

2018-05-26 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.6 Changeset: r94690:cbea6ffdd672 Date: 2018-05-26 15:23 +0200 http://bitbucket.org/pypy/pypy/changeset/cbea6ffdd672/ Log:calling subtypes of type with one arg is not supported any more diff --git a/pypy/objspace/std/test/test_typeobject.py b/p

[pypy-commit] pypy py3.6: support for underscores in float and complex literals. tests and approach taken

2018-05-26 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.6 Changeset: r94689:44c25f062a8c Date: 2018-05-26 14:58 +0200 http://bitbucket.org/pypy/pypy/changeset/44c25f062a8c/ Log:support for underscores in float and complex literals. tests and approach taken from CPython diff --git a/pypy/objs