[pypy-commit] pypy py3.5: fix translation

2017-11-11 Thread rlamy
Author: Ronan Lamy Branch: py3.5 Changeset: r92990:92c6fb568fa1 Date: 2017-11-11 15:51 + http://bitbucket.org/pypy/pypy/changeset/92c6fb568fa1/ Log:fix translation diff --git a/pypy/objspace/std/typeobject.py b/pypy/objspace/std/typeobject.py --- a/pypy/objspace/std/typeobject.py +++ b/p

[pypy-commit] pypy default: add a hint

2017-11-11 Thread fijal
Author: fijal Branch: Changeset: r92991:e5bfccc9fd98 Date: 2017-11-11 16:05 -0500 http://bitbucket.org/pypy/pypy/changeset/e5bfccc9fd98/ Log:add a hint diff --git a/pypy/objspace/std/bytearrayobject.py b/pypy/objspace/std/bytearrayobject.py --- a/pypy/objspace/std/bytearrayobject.py +++ b/p

[pypy-commit] pypy math-improvements: Remove some unneddecary use of widedigit in _x_mul

2017-11-11 Thread stian
Author: stian Branch: math-improvements Changeset: r92992:985fb3488ff0 Date: 2017-11-12 05:28 +0100 http://bitbucket.org/pypy/pypy/changeset/985fb3488ff0/ Log:Remove some unneddecary use of widedigit in _x_mul diff --git a/rpython/rlib/rbigint.py b/rpython/rlib/rbigint.py --- a/rpython/rlib/r

[pypy-commit] pypy math-improvements: Make inplace_divmod unsigned, this makes for a ~20% speed up in long / single digit

2017-11-11 Thread stian
Author: stian Branch: math-improvements Changeset: r92993:3c7a6c85f39c Date: 2017-11-12 08:40 +0100 http://bitbucket.org/pypy/pypy/changeset/3c7a6c85f39c/ Log:Make inplace_divmod unsigned, this makes for a ~20% speed up in long / single digit diff --git a/rpython/rlib/rbigint.py b/rpy