[pypy-commit] cffi default: Issue #300

2017-07-21 Thread arigo
Author: Armin Rigo Branch: Changeset: r2995:f928bdbf5e1f Date: 2017-07-21 09:01 +0200 http://bitbucket.org/cffi/cffi/changeset/f928bdbf5e1f/ Log:Issue #300 Hopefully fix the remaining cases where a _Bool return value was not correctly converted to a Python bool, but still ga

[pypy-commit] pypy default: import cffi/f928bdbf5e1f

2017-07-21 Thread arigo
Author: Armin Rigo Branch: Changeset: r91946:2d76a6b9d1c2 Date: 2017-07-21 10:18 +0200 http://bitbucket.org/pypy/pypy/changeset/2d76a6b9d1c2/ Log:import cffi/f928bdbf5e1f diff --git a/lib_pypy/cffi/_cffi_include.h b/lib_pypy/cffi/_cffi_include.h --- a/lib_pypy/cffi/_cffi_include.h +++ b/lib

[pypy-commit] pypy multiphase: fix test name (was shadowing the existing 'test_basic')

2017-07-21 Thread rlamy
Author: Ronan Lamy Branch: multiphase Changeset: r91947:bbea9a4a0c49 Date: 2017-07-21 13:03 +0200 http://bitbucket.org/pypy/pypy/changeset/bbea9a4a0c49/ Log:fix test name (was shadowing the existing 'test_basic') diff --git a/pypy/module/cpyext/test/test_module.py b/pypy/module/cpyext/test/

[pypy-commit] pypy default: kill dead code

2017-07-21 Thread rlamy
Author: Ronan Lamy Branch: Changeset: r91948:a8c055058298 Date: 2017-07-21 14:14 +0200 http://bitbucket.org/pypy/pypy/changeset/a8c055058298/ Log:kill dead code diff --git a/pypy/module/cpyext/test/test_cpyext.py b/pypy/module/cpyext/test/test_cpyext.py --- a/pypy/module/cpyext/test/test_c

[pypy-commit] pypy default: cleanup cleanup code

2017-07-21 Thread rlamy
Author: Ronan Lamy Branch: Changeset: r91949:a22659423f20 Date: 2017-07-21 14:49 +0200 http://bitbucket.org/pypy/pypy/changeset/a22659423f20/ Log:cleanup cleanup code diff --git a/pypy/module/cpyext/test/test_api.py b/pypy/module/cpyext/test/test_api.py --- a/pypy/module/cpyext/test/test_a

[pypy-commit] pypy default: document need to consider changing SOABI when releasing

2017-07-21 Thread mattip
Author: Matti Picus Branch: Changeset: r91950:fcd9df9494da Date: 2017-07-21 16:51 +0300 http://bitbucket.org/pypy/pypy/changeset/fcd9df9494da/ Log:document need to consider changing SOABI when releasing diff --git a/pypy/doc/how-to-release.rst b/pypy/doc/how-to-release.rst --- a/pypy/doc/ho

[pypy-commit] cffi default: Mention the embedding problem on Debian that was discussed in issue #264.

2017-07-21 Thread arigo
Author: Armin Rigo Branch: Changeset: r2996:2f3c1c595e96 Date: 2017-07-21 17:35 +0200 http://bitbucket.org/cffi/cffi/changeset/2f3c1c595e96/ Log:Mention the embedding problem on Debian that was discussed in issue #264. diff --git a/doc/source/embedding.rst b/doc/source/embedding.rst

[pypy-commit] pypy cpyext-leakchecking: Try to enable leakchecker in cpyext tests; pre-create some PyObjects for long-lived objects

2017-07-21 Thread rlamy
Author: Ronan Lamy Branch: cpyext-leakchecking Changeset: r91951:e5f5f5b6191c Date: 2017-07-22 00:09 +0200 http://bitbucket.org/pypy/pypy/changeset/e5f5f5b6191c/ Log:Try to enable leakchecker in cpyext tests; pre-create some PyObjects for long-lived objects diff --git a/pypy/module/c

[pypy-commit] pypy py3.6: Add temporary "solution" for failing 'import site'.

2017-07-21 Thread mjacob
Author: Manuel Jacob Branch: py3.6 Changeset: r91952:75d795b23931 Date: 2017-07-21 20:05 +0200 http://bitbucket.org/pypy/pypy/changeset/75d795b23931/ Log:Add temporary "solution" for failing 'import site'. diff --git a/lib-python/3/sysconfig.py b/lib-python/3/sysconfig.py --- a/lib-python/3/

[pypy-commit] pypy py3.6: Re-apply part of 46bb03e8.

2017-07-21 Thread mjacob
Author: Manuel Jacob Branch: py3.6 Changeset: r91953:c42f02b742b9 Date: 2017-07-22 01:28 +0200 http://bitbucket.org/pypy/pypy/changeset/c42f02b742b9/ Log:Re-apply part of 46bb03e8. diff --git a/lib-python/3/ctypes/__init__.py b/lib-python/3/ctypes/__init__.py --- a/lib-python/3/ctypes/__init

[pypy-commit] pypy py3.6: Test and fix: a global declaration after an assignment with the same name is now a SyntaxError instead of only a warning.

2017-07-21 Thread mjacob
Author: Manuel Jacob Branch: py3.6 Changeset: r91954:1c770e1ebaa0 Date: 2017-07-22 01:59 +0200 http://bitbucket.org/pypy/pypy/changeset/1c770e1ebaa0/ Log:Test and fix: a global declaration after an assignment with the same name is now a SyntaxError instead of only a warning. diff --g