[pypy-commit] pypy default: backport ncurses changes from portable-pypy

2019-10-31 Thread mattip
Author: Matti Picus Branch: Changeset: r97905:28382af84334 Date: 2019-10-31 13:00 +0200 http://bitbucket.org/pypy/pypy/changeset/28382af84334/ Log:backport ncurses changes from portable-pypy diff --git a/lib_pypy/_curses_build.py b/lib_pypy/_curses_build.py --- a/lib_pypy/_curses_build.py +

[pypy-commit] buildbot default: update docker run for --user

2019-10-31 Thread mattip
Author: Matti Picus Branch: Changeset: r1098:968866aaeff1 Date: 2019-10-31 13:46 +0200 http://bitbucket.org/pypy/buildbot/changeset/968866aaeff1/ Log:update docker run for --user diff --git a/docker/Dockerfile b/docker/Dockerfile --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -5,7 +5,7

[pypy-commit] pypy _PySet_NextEntry: start to implement _PySet_NextEntry

2019-10-31 Thread mattip
Author: Matti Picus Branch: _PySet_NextEntry Changeset: r97906:386490448614 Date: 2019-10-31 15:13 +0200 http://bitbucket.org/pypy/pypy/changeset/386490448614/ Log:start to implement _PySet_NextEntry diff --git a/pypy/module/cpyext/setobject.py b/pypy/module/cpyext/setobject.py --- a/pypy/mo

[pypy-commit] pypy _PySet_NextEntry: in-progress

2019-10-31 Thread arigo
Author: Armin Rigo Branch: _PySet_NextEntry Changeset: r97907:4b97719a1d45 Date: 2019-10-31 14:24 +0100 http://bitbucket.org/pypy/pypy/changeset/4b97719a1d45/ Log:in-progress diff --git a/pypy/module/cpyext/include/Python.h b/pypy/module/cpyext/include/Python.h --- a/pypy/module/cpyext/incl

[pypy-commit] pypy _PySet_NextEntry: abandon this py3.6-based branch, done in default in 4748c02be810

2019-10-31 Thread arigo
Author: Armin Rigo Branch: _PySet_NextEntry Changeset: r97909:c3a4841ed936 Date: 2019-10-31 17:12 +0100 http://bitbucket.org/pypy/pypy/changeset/c3a4841ed936/ Log:abandon this py3.6-based branch, done in default in 4748c02be810 ___ pypy-commit mail

[pypy-commit] pypy default: Add _PySet_Next{, Entry}. Based on the _PySet_NextEntry branch but for pypy2

2019-10-31 Thread arigo
Author: Armin Rigo Branch: Changeset: r97908:4748c02be810 Date: 2019-10-31 17:09 +0100 http://bitbucket.org/pypy/pypy/changeset/4748c02be810/ Log:Add _PySet_Next{,Entry}. Based on the _PySet_NextEntry branch but for pypy2 diff --git a/pypy/module/cpyext/dictobject.py b/pypy/module/c

[pypy-commit] pypy py3.6: Fix PyFrame._guess_function_name_parens()

2019-10-31 Thread rlamy
Author: Ronan Lamy Branch: py3.6 Changeset: r97910:66ff7d1e3593 Date: 2019-10-31 17:34 + http://bitbucket.org/pypy/pypy/changeset/66ff7d1e3593/ Log:Fix PyFrame._guess_function_name_parens() diff --git a/pypy/interpreter/pyframe.py b/pypy/interpreter/pyframe.py --- a/pypy/interpreter/pyfr

[pypy-commit] pypy py3.6: merge heads

2019-10-31 Thread mattip
Author: Matti Picus Branch: py3.6 Changeset: r97912:33fe0dcb31b8 Date: 2019-10-31 19:37 +0200 http://bitbucket.org/pypy/pypy/changeset/33fe0dcb31b8/ Log:merge heads diff --git a/pypy/interpreter/pyframe.py b/pypy/interpreter/pyframe.py --- a/pypy/interpreter/pyframe.py +++ b/pypy/interpreter

[pypy-commit] pypy py3.6: merge default into py3.6

2019-10-31 Thread mattip
Author: Matti Picus Branch: py3.6 Changeset: r97911:87d2c3bfeef2 Date: 2019-10-31 18:36 +0200 http://bitbucket.org/pypy/pypy/changeset/87d2c3bfeef2/ Log:merge default into py3.6 diff --git a/lib_pypy/_curses_build.py b/lib_pypy/_curses_build.py --- a/lib_pypy/_curses_build.py +++ b/lib_pypy/

[pypy-commit] pypy py3.7: Merged in Yannick_Jadoul/pypy/py3.7-bpo-31333 (pull request #675)

2019-10-31 Thread rlamy
Author: Ronan Lamy Branch: py3.7 Changeset: r97918:4a29e3fa9b40 Date: 2019-10-31 17:41 + http://bitbucket.org/pypy/pypy/changeset/4a29e3fa9b40/ Log:Merged in Yannick_Jadoul/pypy/py3.7-bpo-31333 (pull request #675) bpo-31333: Adding built-in module _abc diff --git a/pypy/config/p

[pypy-commit] pypy py3.7-bpo-31333: Fixing _abc._get_dump to return sets, rather than the new SimpleWeakSet wrapper

2019-10-31 Thread Yannick_Jadoul
Author: Yannick Jadoul Branch: py3.7-bpo-31333 Changeset: r97915:8c14c8098e5a Date: 2019-10-20 22:48 +0200 http://bitbucket.org/pypy/pypy/changeset/8c14c8098e5a/ Log:Fixing _abc._get_dump to return sets, rather than the new SimpleWeakSet wrapper diff --git a/pypy/module/_abc/app_abc.

[pypy-commit] pypy py3.7-bpo-31333: Added tests and fixed _reset_registry and _reset_caches

2019-10-31 Thread Yannick_Jadoul
Author: Yannick Jadoul Branch: py3.7-bpo-31333 Changeset: r97916:1e2d3e37d725 Date: 2019-10-20 23:15 +0200 http://bitbucket.org/pypy/pypy/changeset/1e2d3e37d725/ Log:Added tests and fixed _reset_registry and _reset_caches diff --git a/pypy/module/_abc/app_abc.py b/pypy/module/_abc/app_abc.py

[pypy-commit] pypy py3.7-bpo-31333: Moving _abc from essential_modules to default_modules

2019-10-31 Thread Yannick_Jadoul
Author: Yannick Jadoul Branch: py3.7-bpo-31333 Changeset: r97917:cf9fa90f1848 Date: 2019-10-21 14:27 +0200 http://bitbucket.org/pypy/pypy/changeset/cf9fa90f1848/ Log:Moving _abc from essential_modules to default_modules diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py --- a

[pypy-commit] pypy py3.7-bpo-31333: Adding built-in module _abc

2019-10-31 Thread Yannick_Jadoul
Author: Yannick Jadoul Branch: py3.7-bpo-31333 Changeset: r97913:1afc6d0f0699 Date: 2019-10-18 19:58 +0200 http://bitbucket.org/pypy/pypy/changeset/1afc6d0f0699/ Log:Adding built-in module _abc diff --git a/pypy/module/_abc/__init__.py b/pypy/module/_abc/__init__.py new file mode 100644 diff

[pypy-commit] pypy py3.7-bpo-31333: Not importing _weakrefset anymore to implement _abc module, and added '_abc' to essential_modules list

2019-10-31 Thread Yannick_Jadoul
Author: Yannick Jadoul Branch: py3.7-bpo-31333 Changeset: r97914:4ad607fdca5d Date: 2019-10-20 02:12 +0200 http://bitbucket.org/pypy/pypy/changeset/4ad607fdca5d/ Log:Not importing _weakrefset anymore to implement _abc module, and added '_abc' to essential_modules list diff --git a/py

[pypy-commit] buildbot default: add more documentation around using docker

2019-10-31 Thread mattip
Author: Matti Picus Branch: Changeset: r1099:c40bc42d1f79 Date: 2019-10-31 20:45 +0200 http://bitbucket.org/pypy/buildbot/changeset/c40bc42d1f79/ Log:add more documentation around using docker diff --git a/docker/Dockerfile b/docker/Dockerfile --- a/docker/Dockerfile +++ b/docker/Dockerfile

[pypy-commit] pypy default: test showing the problem of #3108

2019-10-31 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: Changeset: r97923:73f583091cbf Date: 2019-10-31 21:04 +0100 http://bitbucket.org/pypy/pypy/changeset/73f583091cbf/ Log:test showing the problem of #3108 diff --git a/pypy/objspace/std/test/test_jsondict.py b/pypy/objspace/std/test/test_jsondict.p

[pypy-commit] pypy default: fix #3108: the map based parser didn't deal with json dicts with repeated keys

2019-10-31 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: Changeset: r97924:86da6cb357f1 Date: 2019-10-31 21:07 +0100 http://bitbucket.org/pypy/pypy/changeset/86da6cb357f1/ Log:fix #3108: the map based parser didn't deal with json dicts with repeated keys correctly diff --git a/pypy/module/_pypyj

[pypy-commit] pypy default: fix failing test, remove tab

2019-10-31 Thread mattip
Author: Matti Picus Branch: Changeset: r97925:d91b02c62beb Date: 2019-11-01 05:01 +0200 http://bitbucket.org/pypy/pypy/changeset/d91b02c62beb/ Log:fix failing test, remove tab diff --git a/lib_pypy/_curses_build.py b/lib_pypy/_curses_build.py --- a/lib_pypy/_curses_build.py +++ b/lib_pypy/_