[pypy-commit] pypy default: sync imports with upstream 2.7.15

2019-08-22 Thread mattip
Author: Matti Picus Branch: Changeset: r97237:e35f09200d0b Date: 2019-08-22 10:21 +0300 http://bitbucket.org/pypy/pypy/changeset/e35f09200d0b/ Log:sync imports with upstream 2.7.15 diff --git a/lib-python/2.7/test/test_dictviews.py b/lib-python/2.7/test/test_dictviews.py --- a/lib-python/2

[pypy-commit] pypy default: typo (would generate two semicolons in the C sources)

2019-08-22 Thread arigo
Author: Armin Rigo Branch: Changeset: r97238:c0c361423879 Date: 2019-08-22 11:39 +0200 http://bitbucket.org/pypy/pypy/changeset/c0c361423879/ Log:typo (would generate two semicolons in the C sources) diff --git a/rpython/translator/c/funcgen.py b/rpython/translator/c/funcgen.py --- a/rpytho

[pypy-commit] pypy default: reference the pypyjit module from command-line JIT help

2019-08-22 Thread mattip
Author: Matti Picus Branch: Changeset: r97239:d21503421f0c Date: 2019-08-22 13:09 +0300 http://bitbucket.org/pypy/pypy/changeset/d21503421f0c/ Log:reference the pypyjit module from command-line JIT help diff --git a/pypy/interpreter/app_main.py b/pypy/interpreter/app_main.py --- a/pypy/inte

[pypy-commit] pypy default: Issue #2979

2019-08-22 Thread arigo
Author: Armin Rigo Branch: Changeset: r97240:4b0a97483aaa Date: 2019-08-22 12:03 +0200 http://bitbucket.org/pypy/pypy/changeset/4b0a97483aaa/ Log:Issue #2979 Add a gc flag on "dummy" objects created by the rtyper, and never return these objects from pypy.module.gc. diff --g

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

2019-08-22 Thread arigo
Author: Armin Rigo Branch: py3.6 Changeset: r97241:27e4db43a117 Date: 2019-08-22 12:04 +0200 http://bitbucket.org/pypy/pypy/changeset/27e4db43a117/ Log:hg merge default diff --git a/pypy/module/gc/referents.py b/pypy/module/gc/referents.py --- a/pypy/module/gc/referents.py +++ b/pypy/module/

[pypy-commit] pypy default: merge heads

2019-08-22 Thread arigo
Author: Armin Rigo Branch: Changeset: r97242:bacea0b28bb3 Date: 2019-08-22 13:15 +0200 http://bitbucket.org/pypy/pypy/changeset/bacea0b28bb3/ Log:merge heads diff --git a/pypy/interpreter/app_main.py b/pypy/interpreter/app_main.py --- a/pypy/interpreter/app_main.py +++ b/pypy/interpreter/ap

[pypy-commit] pypy py3.6: Make gettext be importable, at least, if sys.base_prefix is not set.

2019-08-22 Thread arigo
Author: Armin Rigo Branch: py3.6 Changeset: r97243:38055c21771a Date: 2019-08-22 15:01 +0200 http://bitbucket.org/pypy/pypy/changeset/38055c21771a/ Log:Make gettext be importable, at least, if sys.base_prefix is not set. See comment diff --git a/lib-python/3/gettext.py b/lib-python/3

[pypy-commit] pypy py3.6: Use same logic as CPython in int.__new__ and fix yet another corner case

2019-08-22 Thread rlamy
Author: Ronan Lamy Branch: py3.6 Changeset: r97244:1a1112535b61 Date: 2019-08-22 16:47 +0100 http://bitbucket.org/pypy/pypy/changeset/1a1112535b61/ Log:Use same logic as CPython in int.__new__ and fix yet another corner case diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interp

[pypy-commit] pypy py3.6: Fix annotations related to _new_int()

2019-08-22 Thread rlamy
Author: Ronan Lamy Branch: py3.6 Changeset: r97245:1114b8c0be6d Date: 2019-08-22 17:30 +0100 http://bitbucket.org/pypy/pypy/changeset/1114b8c0be6d/ Log:Fix annotations related to _new_int() diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspace.py --- a/pypy/interprete

[pypy-commit] pypy py3.6: CPython compatibility: IOBase.readlines() should rely on the iterator protocol instead of calling readline() directly

2019-08-22 Thread rlamy
Author: Ronan Lamy Branch: py3.6 Changeset: r97246:7b9b2790269b Date: 2019-08-22 17:45 +0100 http://bitbucket.org/pypy/pypy/changeset/7b9b2790269b/ Log:CPython compatibility: IOBase.readlines() should rely on the iterator protocol instead of calling readline() directly diff --git a/p