[pypy-commit] pypy vmprof-native: test_ztranslation translates now

2017-02-07 Thread plan_rich
Author: Richard Plangger Branch: vmprof-native Changeset: r89990:ad7e7ef86e35 Date: 2017-02-07 09:23 +0100 http://bitbucket.org/pypy/pypy/changeset/ad7e7ef86e35/ Log:test_ztranslation translates now diff --git a/rpython/rlib/rvmprof/cintf.py b/rpython/rlib/rvmprof/cintf.py --- a/rpython/rlib

[pypy-commit] pypy vmprof-native: renamed stack.c to vmp_stack.c (name clash), ztranslation test passes now

2017-02-07 Thread plan_rich
Author: Richard Plangger Branch: vmprof-native Changeset: r89991:fc31028c801e Date: 2017-02-07 09:57 +0100 http://bitbucket.org/pypy/pypy/changeset/fc31028c801e/ Log:renamed stack.c to vmp_stack.c (name clash), ztranslation test passes now diff --git a/rpython/rlib/rvmprof/cintf.py b

[pypy-commit] pypy py3.5: fix for direct tests

2017-02-07 Thread arigo
Author: Armin Rigo Branch: py3.5 Changeset: r89992:b24a3e616dc8 Date: 2017-02-07 10:27 +0100 http://bitbucket.org/pypy/pypy/changeset/b24a3e616dc8/ Log:fix for direct tests diff --git a/lib_pypy/_functools.py b/lib_pypy/_functools.py --- a/lib_pypy/_functools.py +++ b/lib_pypy/_functools.py

[pypy-commit] pypy vmprof-native: add doc string to jit.oopspec, parameterize native on rvmprof.enable

2017-02-07 Thread plan_rich
Author: Richard Plangger Branch: vmprof-native Changeset: r89993:a947b5fb780a Date: 2017-02-07 10:21 +0100 http://bitbucket.org/pypy/pypy/changeset/a947b5fb780a/ Log:add doc string to jit.oopspec, parameterize native on rvmprof.enable diff --git a/rpython/rlib/jit.py b/rpython/rlib/jit.py --

[pypy-commit] pypy default: Only ignore "*_cffi.c", not all .c files

2017-02-07 Thread arigo
Author: Armin Rigo Branch: Changeset: r89994:45712b335ecf Date: 2017-02-07 10:41 +0100 http://bitbucket.org/pypy/pypy/changeset/45712b335ecf/ Log:Only ignore "*_cffi.c", not all .c files diff --git a/pypy/tool/release/package.py b/pypy/tool/release/package.py --- a/pypy/tool/release/package

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

2017-02-07 Thread arigo
Author: Armin Rigo Branch: py3.5 Changeset: r89995:7cab0b276e26 Date: 2017-02-07 10:42 +0100 http://bitbucket.org/pypy/pypy/changeset/7cab0b276e26/ Log:hg merge default diff --git a/pypy/objspace/std/dictmultiobject.py b/pypy/objspace/std/dictmultiobject.py --- a/pypy/objspace/std/dictmulti

[pypy-commit] pypy default: Add some debugging logic

2017-02-07 Thread arigo
Author: Armin Rigo Branch: Changeset: r89996:3195205d1faa Date: 2017-02-07 11:53 +0100 http://bitbucket.org/pypy/pypy/changeset/3195205d1faa/ Log:Add some debugging logic diff --git a/rpython/translator/c/src/stacklet/stacklet.c b/rpython/translator/c/src/stacklet/stacklet.c --- a/rpython/

[pypy-commit] pypy default: fix, and also replace asserts with checks that are always enabled

2017-02-07 Thread arigo
Author: Armin Rigo Branch: Changeset: r89997:4fcac853f676 Date: 2017-02-07 12:01 +0100 http://bitbucket.org/pypy/pypy/changeset/4fcac853f676/ Log:fix, and also replace asserts with checks that are always enabled diff --git a/rpython/translator/c/src/stacklet/stacklet.c b/rpython/translator

[pypy-commit] pypy vmprof-native: passing some more vmprof tests

2017-02-07 Thread plan_rich
Author: Richard Plangger Branch: vmprof-native Changeset: r89998:dc4c3b35b94c Date: 2017-02-07 14:29 +0100 http://bitbucket.org/pypy/pypy/changeset/dc4c3b35b94c/ Log:passing some more vmprof tests diff --git a/rpython/rlib/rvmprof/cintf.py b/rpython/rlib/rvmprof/cintf.py --- a/rpython/rlib/r

[pypy-commit] pypy py3.5: fix and clean up of f-strings: now internally handled as utf-8, instead of

2017-02-07 Thread arigo
Author: Armin Rigo Branch: py3.5 Changeset: r8:4fd6ad6559bf Date: 2017-02-07 13:39 +0100 http://bitbucket.org/pypy/pypy/changeset/4fd6ad6559bf/ Log:fix and clean up of f-strings: now internally handled as utf-8, instead of as unicode-that-can-only-contain-ascii-anyway diff --git

[pypy-commit] pypy vmprof-native: add brackets to if statement, swap variable names

2017-02-07 Thread plan_rich
Author: Richard Plangger Branch: vmprof-native Changeset: r9:c7f8f45b5a55 Date: 2017-02-07 15:47 +0100 http://bitbucket.org/pypy/pypy/changeset/c7f8f45b5a55/ Log:add brackets to if statement, swap variable names diff --git a/rpython/rlib/rvmprof/src/shared/vmprof_common.h b/rpython/rlib

[pypy-commit] cffi default: ffi.addressof(lib, "name") now also works in in-line mode

2017-02-07 Thread arigo
Author: Armin Rigo Branch: Changeset: r2886:4174b2bf46e0 Date: 2017-02-07 16:28 +0100 http://bitbucket.org/cffi/cffi/changeset/4174b2bf46e0/ Log:ffi.addressof(lib, "name") now also works in in-line mode diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c --- a/c/_cffi_backend.c +++ b/c/_cffi

[pypy-commit] cffi default: fix test

2017-02-07 Thread arigo
Author: Armin Rigo Branch: Changeset: r2887:6f5001375739 Date: 2017-02-07 16:31 +0100 http://bitbucket.org/cffi/cffi/changeset/6f5001375739/ Log:fix test diff --git a/c/test_c.py b/c/test_c.py --- a/c/test_c.py +++ b/c/test_c.py @@ -376,7 +376,7 @@ x = find_and_load_library(None)

[pypy-commit] pypy default: update to cffi/6f5001375739

2017-02-07 Thread arigo
Author: Armin Rigo Branch: Changeset: r90001:f63a701a6ae4 Date: 2017-02-07 16:36 +0100 http://bitbucket.org/pypy/pypy/changeset/f63a701a6ae4/ Log:update to cffi/6f5001375739 diff --git a/pypy/module/_cffi_backend/libraryobj.py b/pypy/module/_cffi_backend/libraryobj.py --- a/pypy/module/_cf

[pypy-commit] pypy default: update to cffi/6f5001375739 (forgot this)

2017-02-07 Thread arigo
Author: Armin Rigo Branch: Changeset: r90002:c645557d7175 Date: 2017-02-07 16:37 +0100 http://bitbucket.org/pypy/pypy/changeset/c645557d7175/ Log:update to cffi/6f5001375739 (forgot this) diff --git a/lib_pypy/cffi/api.py b/lib_pypy/cffi/api.py --- a/lib_pypy/cffi/api.py +++ b/lib_pypy/cffi

[pypy-commit] pypy vmprof-native: force function name __vmprof_eval_vmprof for the "trampoline", add native test

2017-02-07 Thread plan_rich
Author: Richard Plangger Branch: vmprof-native Changeset: r90003:389b5116a6a3 Date: 2017-02-07 18:57 +0100 http://bitbucket.org/pypy/pypy/changeset/389b5116a6a3/ Log:force function name __vmprof_eval_vmprof for the "trampoline", add native test diff --git a/rpython/rlib/rvmprof/__ini

[pypy-commit] pypy default: Reimplementing every extension under the sun in cffi is not really that useful any more, recommend working with upstreams instead

2017-02-07 Thread rlamy
Author: Ronan Lamy Branch: Changeset: r90004:8a778fab7e8a Date: 2017-02-07 19:20 + http://bitbucket.org/pypy/pypy/changeset/8a778fab7e8a/ Log:Reimplementing every extension under the sun in cffi is not really that useful any more, recommend working with upstreams instead diff --

[pypy-commit] pypy default: Add project idea: Explicit typing in RPython

2017-02-07 Thread rlamy
Author: Ronan Lamy Branch: Changeset: r90005:5b678fd8a673 Date: 2017-02-07 21:34 + http://bitbucket.org/pypy/pypy/changeset/5b678fd8a673/ Log:Add project idea: Explicit typing in RPython diff --git a/pypy/doc/project-ideas.rst b/pypy/doc/project-ideas.rst --- a/pypy/doc/project-ideas.rs