[pypy-commit] pypy py3.5: Replace fragile upstream expat exception test with a more reasonable one

2017-08-14 Thread exarkun
Author: Jean-Paul Calderone Branch: py3.5 Changeset: r92142:e2a71b4f385a Date: 2017-08-14 08:16 -0400 http://bitbucket.org/pypy/pypy/changeset/e2a71b4f385a/ Log:Replace fragile upstream expat exception test with a more reasonable one diff --git a/lib-python/3/test/test_pyexpat.py b/

[pypy-commit] pypy py3.5: Remove debug print

2017-08-14 Thread exarkun
Author: Jean-Paul Calderone Branch: py3.5 Changeset: r92143:dc0a896dbbd6 Date: 2017-08-14 08:17 -0400 http://bitbucket.org/pypy/pypy/changeset/dc0a896dbbd6/ Log:Remove debug print diff --git a/lib-python/3/test/test_pyexpat.py b/lib-python/3/test/test_pyexpat.py --- a/lib-python/3/test/test

[pypy-commit] pypy multiphase: fix crash when non-ascii extension cannot be found

2017-08-14 Thread rlamy
Author: Ronan Lamy Branch: multiphase Changeset: r92144:8c278da05b4c Date: 2017-08-14 16:39 +0200 http://bitbucket.org/pypy/pypy/changeset/8c278da05b4c/ Log:fix crash when non-ascii extension cannot be found diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpyext/api.py --- a/pypy/module

[pypy-commit] pypy py3.5: Use utf-8 for readline history file.

2017-08-14 Thread exarkun
Author: Jean-Paul Calderone Branch: py3.5 Changeset: r92145:759e514cd5ab Date: 2017-08-14 11:23 -0400 http://bitbucket.org/pypy/pypy/changeset/759e514cd5ab/ Log:Use utf-8 for readline history file. diff --git a/lib_pypy/pyrepl/readline.py b/lib_pypy/pyrepl/readline.py --- a/lib_pypy/pyrepl/r

[pypy-commit] pypy default: Issue #2629

2017-08-14 Thread arigo
Author: Armin Rigo Branch: Changeset: r92147:8775f1e1bf8b Date: 2017-08-14 19:14 +0200 http://bitbucket.org/pypy/pypy/changeset/8775f1e1bf8b/ Log:Issue #2629 Uninitialized instances of 'property' or 'super' should not cause segfaults diff --git a/pypy/module/__builtin__/des

[pypy-commit] pypy default: A corner case for super.__get__

2017-08-14 Thread arigo
Author: Armin Rigo Branch: Changeset: r92146:35cb17be8aae Date: 2017-08-14 19:12 +0200 http://bitbucket.org/pypy/pypy/changeset/35cb17be8aae/ Log:A corner case for super.__get__ diff --git a/pypy/module/__builtin__/descriptor.py b/pypy/module/__builtin__/descriptor.py --- a/pypy/module/__b

[pypy-commit] pypy default: More tests

2017-08-14 Thread arigo
Author: Armin Rigo Branch: Changeset: r92148:bffaeddee9f5 Date: 2017-08-14 19:21 +0200 http://bitbucket.org/pypy/pypy/changeset/bffaeddee9f5/ Log:More tests diff --git a/pypy/module/__builtin__/test/test_descriptor.py b/pypy/module/__builtin__/test/test_descriptor.py --- a/pypy/module/__bu

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

2017-08-14 Thread arigo
Author: Armin Rigo Branch: py3.5 Changeset: r92149:90985eb27be1 Date: 2017-08-14 19:23 +0200 http://bitbucket.org/pypy/pypy/changeset/90985eb27be1/ Log:hg merge default diff --git a/pypy/module/__builtin__/descriptor.py b/pypy/module/__builtin__/descriptor.py --- a/pypy/module/__builtin__/d

[pypy-commit] pypy default: Do not leak reference when using PyModule_AddObject (reverts 5e783074ef82)

2017-08-14 Thread rlamy
Author: Ronan Lamy Branch: Changeset: r92150:9ac0b00b959a Date: 2017-08-14 20:49 +0200 http://bitbucket.org/pypy/pypy/changeset/9ac0b00b959a/ Log:Do not leak reference when using PyModule_AddObject (reverts 5e783074ef82) diff --git a/pypy/module/cpyext/src/modsupport.c b/pypy/modul

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

2017-08-14 Thread rlamy
Author: Ronan Lamy Branch: py3.5 Changeset: r92151:fee5f0e18b17 Date: 2017-08-14 20:52 +0200 http://bitbucket.org/pypy/pypy/changeset/fee5f0e18b17/ Log:hg merge default diff --git a/pypy/module/cpyext/src/modsupport.c b/pypy/module/cpyext/src/modsupport.c --- a/pypy/module/cpyext/src/modsup

[pypy-commit] pypy multiphase: hg merge py3.5

2017-08-14 Thread rlamy
Author: Ronan Lamy Branch: multiphase Changeset: r92152:4babb75613f0 Date: 2017-08-14 20:53 +0200 http://bitbucket.org/pypy/pypy/changeset/4babb75613f0/ Log:hg merge py3.5 diff --git a/lib-python/3/distutils/sysconfig_pypy.py b/lib-python/3/distutils/sysconfig_pypy.py --- a/lib-python/3/dis

[pypy-commit] pypy multiphase: Fix leaks in PyType_FromSpec

2017-08-14 Thread rlamy
Author: Ronan Lamy Branch: multiphase Changeset: r92153:14b50017ab08 Date: 2017-08-14 21:29 +0200 http://bitbucket.org/pypy/pypy/changeset/14b50017ab08/ Log:Fix leaks in PyType_FromSpec diff --git a/pypy/module/cpyext/typeobject.py b/pypy/module/cpyext/typeobject.py --- a/pypy/module/cpyext/