[pypy-commit] pypy default: Issue #2865

2018-08-09 Thread arigo
Author: Armin Rigo Branch: Changeset: r94982:95232deededb Date: 2018-08-09 15:46 +0200 http://bitbucket.org/pypy/pypy/changeset/95232deededb/ Log:Issue #2865 Make types.MemberDescriptorType be the type of app-level slots diff --git a/lib-python/2.7/types.py b/lib-python/2.7/types.p

[pypy-commit] pypy py3.5: hg merge default (and port the changes from 2.7/types.py to 3/types.py)

2018-08-09 Thread arigo
Author: Armin Rigo Branch: py3.5 Changeset: r94983:f938ea58f52c Date: 2018-08-09 16:32 +0200 http://bitbucket.org/pypy/pypy/changeset/f938ea58f52c/ Log:hg merge default (and port the changes from 2.7/types.py to 3/types.py) diff --git a/lib-python/3/types.py b/lib-python/3/types.py -

[pypy-commit] pypy unicode-utf8-py3: add a lgt arg to newtext, change error _compute_value accordingly

2018-08-09 Thread mattip
Author: Matti Picus Branch: unicode-utf8-py3 Changeset: r94984:07a4929a661d Date: 2018-08-09 13:27 -0700 http://bitbucket.org/pypy/pypy/changeset/07a4929a661d/ Log:add a lgt arg to newtext, change error _compute_value accordingly diff --git a/pypy/interpreter/error.py b/pypy/interpreter/erro

[pypy-commit] pypy unicode-utf8-py3: fix test

2018-08-09 Thread mattip
Author: Matti Picus Branch: unicode-utf8-py3 Changeset: r94987:d7d67afa0ca8 Date: 2018-08-09 13:29 -0700 http://bitbucket.org/pypy/pypy/changeset/d7d67afa0ca8/ Log:fix test diff --git a/pypy/module/_codecs/test/test_locale.py b/pypy/module/_codecs/test/test_locale.py --- a/pypy/module/_code

[pypy-commit] pypy unicode-utf8-py3: replace utf8 with W_Unicode , saves a conversion or two

2018-08-09 Thread mattip
Author: Matti Picus Branch: unicode-utf8-py3 Changeset: r94985:f6f71b76311e Date: 2018-08-09 13:28 -0700 http://bitbucket.org/pypy/pypy/changeset/f6f71b76311e/ Log:replace utf8 with W_Unicode , saves a conversion or two diff --git a/pypy/interpreter/astcompiler/fstring.py b/pypy/interpreter

[pypy-commit] pypy unicode-utf8-py3: start to replace s.encode('utf8') with calls to unicode_encode_utf_8

2018-08-09 Thread mattip
Author: Matti Picus Branch: unicode-utf8-py3 Changeset: r94986:3125af5a0967 Date: 2018-08-09 13:29 -0700 http://bitbucket.org/pypy/pypy/changeset/3125af5a0967/ Log:start to replace s.encode('utf8') with calls to unicode_encode_utf_8 diff --git a/pypy/interpreter/argument.py b/pypy/interprete

[pypy-commit] pypy default: Issue #2839

2018-08-09 Thread arigo
Author: Armin Rigo Branch: Changeset: r94988:dc18c3e11193 Date: 2018-08-09 22:37 +0200 http://bitbucket.org/pypy/pypy/changeset/dc18c3e11193/ Log:Issue #2839 max(list-of-int) was much slower when run from non-jitted code. Fixed. diff --git a/pypy/module/__builtin__/function