[pypy-commit] pypy default: Test, fix (filename too long in the jitcodes directory!)

2017-01-05 Thread arigo
Author: Armin Rigo Branch: Changeset: r89373:606e869ec3f2 Date: 2017-01-05 08:58 +0100 http://bitbucket.org/pypy/pypy/changeset/606e869ec3f2/ Log:Test, fix (filename too long in the jitcodes directory!) diff --git a/rpython/jit/codewriter/codewriter.py b/rpython/jit/codewriter/codewriter.p

[pypy-commit] pypy cpyext-cleanup: Remove unnecessary special-casing of cpyext in space.setup_builtin_modules()

2017-01-05 Thread rlamy
Author: Ronan Lamy Branch: cpyext-cleanup Changeset: r89374:68058ce4557d Date: 2017-01-05 12:29 + http://bitbucket.org/pypy/pypy/changeset/68058ce4557d/ Log:Remove unnecessary special-casing of cpyext in space.setup_builtin_modules() diff --git a/pypy/interpreter/baseobjspace.py

[pypy-commit] pypy cpyext-cleanup: Put deallocation trigger initialisation all in one place

2017-01-05 Thread rlamy
Author: Ronan Lamy Branch: cpyext-cleanup Changeset: r89375:64f7a07e347f Date: 2017-01-05 13:08 + http://bitbucket.org/pypy/pypy/changeset/64f7a07e347f/ Log:Put deallocation trigger initialisation all in one place diff --git a/pypy/module/cpyext/__init__.py b/pypy/module/cpyext/__init__.

[pypy-commit] pypy cpyext-cleanup: Move rawrefcount init code out of build_bridge()

2017-01-05 Thread rlamy
Author: Ronan Lamy Branch: cpyext-cleanup Changeset: r89376:95ae01dcc691 Date: 2017-01-05 13:48 + http://bitbucket.org/pypy/pypy/changeset/95ae01dcc691/ Log:Move rawrefcount init code out of build_bridge() diff --git a/pypy/module/cpyext/__init__.py b/pypy/module/cpyext/__init__.py --- a

[pypy-commit] pypy default: Update to latest cffi's test_c.py

2017-01-05 Thread arigo
Author: Armin Rigo Branch: Changeset: r89377:4927aa24cb71 Date: 2017-01-05 14:53 +0100 http://bitbucket.org/pypy/pypy/changeset/4927aa24cb71/ Log:Update to latest cffi's test_c.py diff --git a/pypy/module/_cffi_backend/test/_backend_test_c.py b/pypy/module/_cffi_backend/test/_backend_test_

[pypy-commit] pypy default: CPython fix

2017-01-05 Thread arigo
Author: Armin Rigo Branch: Changeset: r89378:c71c2d504102 Date: 2017-01-05 15:08 +0100 http://bitbucket.org/pypy/pypy/changeset/c71c2d504102/ Log:CPython fix diff --git a/rpython/rtyper/lltypesystem/rffi.py b/rpython/rtyper/lltypesystem/rffi.py --- a/rpython/rtyper/lltypesystem/rffi.py +++

[pypy-commit] pypy cpyext-cleanup: Sticking Nones into FUNCTIONS_BY_HEADER does nothing whatsoever

2017-01-05 Thread rlamy
Author: Ronan Lamy Branch: cpyext-cleanup Changeset: r89379:a6c74862ebdf Date: 2017-01-05 14:30 + http://bitbucket.org/pypy/pypy/changeset/a6c74862ebdf/ Log:Sticking Nones into FUNCTIONS_BY_HEADER does nothing whatsoever diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpyext/api.py

[pypy-commit] pypy cpyext-cleanup: Create write_header() function

2017-01-05 Thread rlamy
Author: Ronan Lamy Branch: cpyext-cleanup Changeset: r89380:4f9fc8a84053 Date: 2017-01-05 16:18 + http://bitbucket.org/pypy/pypy/changeset/4f9fc8a84053/ Log:Create write_header() function diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpyext/api.py --- a/pypy/module/cpyext/api.py +

[pypy-commit] pypy cpyext-cleanup: Call the right version of rawrefcount.init() when translating

2017-01-05 Thread rlamy
Author: Ronan Lamy Branch: cpyext-cleanup Changeset: r89381:5fa79126d59f Date: 2017-01-05 16:21 + http://bitbucket.org/pypy/pypy/changeset/5fa79126d59f/ Log:Call the right version of rawrefcount.init() when translating diff --git a/pypy/module/cpyext/state.py b/pypy/module/cpyext/state.p

[pypy-commit] pypy cpyext-from: change frombuffer/fromobject

2017-01-05 Thread plan_rich
Author: Richard Plangger Branch: cpyext-from Changeset: r89382:34330a47b61f Date: 2017-01-05 17:43 +0100 http://bitbucket.org/pypy/pypy/changeset/34330a47b61f/ Log:change frombuffer/fromobject diff --git a/pypy/module/cpyext/memoryobject.py b/pypy/module/cpyext/memoryobject.py --- a/pypy/mo

[pypy-commit] pypy default: Rename this variable---it's not the size of a pinned object, it's the

2017-01-05 Thread arigo
Author: Armin Rigo Branch: Changeset: r89383:a40f33958400 Date: 2017-01-05 18:16 +0100 http://bitbucket.org/pypy/pypy/changeset/a40f33958400/ Log:Rename this variable---it's not the size of a pinned object, it's the size of the interval between two pinned objects diff --git a/rpytho

[pypy-commit] pypy cpyext-cleanup: Close branch cpyext-cleanup

2017-01-05 Thread rlamy
Author: Ronan Lamy Branch: cpyext-cleanup Changeset: r89384:6eebe65fe506 Date: 2017-01-05 22:46 + http://bitbucket.org/pypy/pypy/changeset/6eebe65fe506/ Log:Close branch cpyext-cleanup ___ pypy-commit mailing list [email protected] https:/

[pypy-commit] pypy default: Merged in cpyext-cleanup (pull request #504)

2017-01-05 Thread rlamy
Author: Ronan Lamy Branch: Changeset: r89385:88be41751667 Date: 2017-01-05 22:46 + http://bitbucket.org/pypy/pypy/changeset/88be41751667/ Log:Merged in cpyext-cleanup (pull request #504) Refactor cpyext initialisation. diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interp

[pypy-commit] pypy default: document merged branch

2017-01-05 Thread rlamy
Author: Ronan Lamy Branch: Changeset: r89386:eb44ca04031a Date: 2017-01-05 22:50 + http://bitbucket.org/pypy/pypy/changeset/eb44ca04031a/ Log:document merged branch diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc/whatsnew-head.rst +++ b/pypy/doc/whats