[pypy-commit] pypy default: issue 3144: version was not being updated, and was the wrong thing to check anyway

2020-01-09 Thread mattip
Author: Matti Picus Branch: Changeset: r98504:580ac8d8c1af Date: 2020-01-10 10:44 +0800 http://bitbucket.org/pypy/pypy/changeset/580ac8d8c1af/ Log:issue 3144: version was not being updated, and was the wrong thing to check anyway diff --git a/lib_pypy/_curses_build.py

[pypy-commit] pypy py3.6: Partially resync pyport.h with CPython 3.6

2020-01-09 Thread rlamy
Author: Ronan Lamy Branch: py3.6 Changeset: r98503:1b19e41a3920 Date: 2020-01-09 20:16 + http://bitbucket.org/pypy/pypy/changeset/1b19e41a3920/ Log:Partially resync pyport.h with CPython 3.6 diff --git a/pypy/module/cpyext/include/pyport.h b/pypy/module/cpyext/include/pyport.h ---

[pypy-commit] pypy default: Partially resync pyport.h with CPython2.7 and add missing constants PY_INT32_T, etc.

2020-01-09 Thread rlamy
Author: Ronan Lamy Branch: Changeset: r98501:11fe1f50f3f8 Date: 2020-01-09 14:59 + http://bitbucket.org/pypy/pypy/changeset/11fe1f50f3f8/ Log:Partially resync pyport.h with CPython2.7 and add missing constants PY_INT32_T, etc. diff --git a/pypy/module/cpyext/include/pyport.h

[pypy-commit] pypy py3.7: missing gc collect

2020-01-09 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98498:c0adca7f067e Date: 2020-01-08 14:48 +0100 http://bitbucket.org/pypy/pypy/changeset/c0adca7f067e/ Log:missing gc collect diff --git a/lib-python/3/test/test_queue.py b/lib-python/3/test/test_queue.py ---

[pypy-commit] pypy default: test and fix for #3146

2020-01-09 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: Changeset: r98499:9e44a2dcc537 Date: 2020-01-09 14:45 +0100 http://bitbucket.org/pypy/pypy/changeset/9e44a2dcc537/ Log:test and fix for #3146 JsonDictStrategy was missing a setitem_str default implementation, so all strategies

[pypy-commit] pypy py3.6: mergedefault

2020-01-09 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.6 Changeset: r98500:e89bb6f7069c Date: 2020-01-09 14:46 +0100 http://bitbucket.org/pypy/pypy/changeset/e89bb6f7069c/ Log:mergedefault diff --git a/pypy/objspace/std/dictmultiobject.py b/pypy/objspace/std/dictmultiobject.py ---

[pypy-commit] pypy default: fast path for 0 << n

2020-01-09 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: Changeset: r98496:5bc85c774501 Date: 2020-01-08 14:29 +0100 http://bitbucket.org/pypy/pypy/changeset/5bc85c774501/ Log:fast path for 0 << n diff --git a/rpython/rlib/rbigint.py b/rpython/rlib/rbigint.py --- a/rpython/rlib/rbigint.py +++

[pypy-commit] pypy py3.7: essential fast path: 0 << gigantic number == 0

2020-01-09 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98497:c7e6320ee915 Date: 2020-01-08 14:34 +0100 http://bitbucket.org/pypy/pypy/changeset/c7e6320ee915/ Log:essential fast path: 0 << gigantic number == 0 diff --git a/pypy/objspace/std/longobject.py