[pypy-commit] cffi default: Explicitly complain if we find 'typedef int... t; ' in a call to verify()

2015-06-15 Thread arigo
Author: Armin Rigo Branch: Changeset: r2186:17be464b073d Date: 2015-06-15 09:04 +0200 http://bitbucket.org/cffi/cffi/changeset/17be464b073d/ Log:Explicitly complain if we find 'typedef int... t;' in a call to verify() diff --git a/cffi/cparser.py b/cffi/cparser.py --- a/cffi/cparser

[pypy-commit] pypy vecopt: added test case to sum on llgraph

2015-06-15 Thread plan_rich
Author: Richard Plangger Branch: vecopt Changeset: r78099:2e80beb1f2b4 Date: 2015-06-15 09:20 +0200 http://bitbucket.org/pypy/pypy/changeset/2e80beb1f2b4/ Log:added test case to sum on llgraph diff --git a/pypy/module/micronumpy/test/test_zjit.py b/pypy/module/micronumpy/test/test_zjit.py -

[pypy-commit] pypy default: Use verify(), it's simpler because it also imports the library without having to give it a real name.

2015-06-15 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r78100:d68cc00b94d0 Date: 2015-06-14 22:40 +0200 http://bitbucket.org/pypy/pypy/changeset/d68cc00b94d0/ Log:Use verify(), it's simpler because it also imports the library without having to give it a real name. diff --git a/lib_pypy/_tk

[pypy-commit] pypy default: Another fix for boolean values

2015-06-15 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r78103:62653cade172 Date: 2015-06-14 23:57 +0200 http://bitbucket.org/pypy/pypy/changeset/62653cade172/ Log:Another fix for boolean values diff --git a/lib_pypy/_tkinter/tclobj.py b/lib_pypy/_tkinter/tclobj.py --- a/lib_pypy/_tkinter/tclobj.py

[pypy-commit] pypy default: tcl: Conversion from long to Bignum.

2015-06-15 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r78105:83e70cd0540a Date: 2015-06-15 09:32 +0200 http://bitbucket.org/pypy/pypy/changeset/83e70cd0540a/ Log:tcl: Conversion from long to Bignum. diff --git a/lib_pypy/_tkinter/tclobj.py b/lib_pypy/_tkinter/tclobj.py --- a/lib_pypy/_tkinter/tcl

[pypy-commit] pypy default: Fix one boolean test

2015-06-15 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r78102:a2f74ab95bf7 Date: 2015-06-14 23:51 +0200 http://bitbucket.org/pypy/pypy/changeset/a2f74ab95bf7/ Log:Fix one boolean test diff --git a/lib_pypy/_tkinter/app.py b/lib_pypy/_tkinter/app.py --- a/lib_pypy/_tkinter/app.py +++ b/lib_pypy/_tk

[pypy-commit] pypy default: Tkinter: Add support for bignum numbers.

2015-06-15 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r78101:dad26a9f1b29 Date: 2015-06-14 23:48 +0200 http://bitbucket.org/pypy/pypy/changeset/dad26a9f1b29/ Log:Tkinter: Add support for bignum numbers. diff --git a/lib_pypy/_tkinter/app.py b/lib_pypy/_tkinter/app.py --- a/lib_pypy/_tkinter/app.p

[pypy-commit] pypy default: tkinter: add "WideInt" type.

2015-06-15 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r78104:fd331e4bf733 Date: 2015-06-15 09:12 +0200 http://bitbucket.org/pypy/pypy/changeset/fd331e4bf733/ Log:tkinter: add "WideInt" type. diff --git a/lib_pypy/_tkinter/app.py b/lib_pypy/_tkinter/app.py --- a/lib_pypy/_tkinter/app.py +++ b/lib_

[pypy-commit] pypy vecopt: error in the test case added array instead of summed scalar

2015-06-15 Thread plan_rich
Author: Richard Plangger Branch: vecopt Changeset: r78106:1d9b7639a828 Date: 2015-06-15 09:40 +0200 http://bitbucket.org/pypy/pypy/changeset/1d9b7639a828/ Log:error in the test case added array instead of summed scalar diff --git a/pypy/module/micronumpy/test/test_zjit.py b/pypy/module/micr

[pypy-commit] pypy vecopt: jit.promote in the numpy internal iterator generates slightly different traces, adjusted tests with the new constant

2015-06-15 Thread plan_rich
Author: Richard Plangger Branch: vecopt Changeset: r78107:3038636d0684 Date: 2015-06-15 10:49 +0200 http://bitbucket.org/pypy/pypy/changeset/3038636d0684/ Log:jit.promote in the numpy internal iterator generates slightly different traces, adjusted tests with the new constant diff --g

[pypy-commit] pypy vecopt: added test case to ensure correctness of transformation and find all missing assembler implementations

2015-06-15 Thread plan_rich
Author: Richard Plangger Branch: vecopt Changeset: r78108:04d9da20e80b Date: 2015-06-15 12:04 +0200 http://bitbucket.org/pypy/pypy/changeset/04d9da20e80b/ Log:added test case to ensure correctness of transformation and find all missing assembler implementations diff --git a/pypy/modu

[pypy-commit] pypy optresult: an attempt to sort out vtable mess

2015-06-15 Thread fijal
Author: Maciej Fijalkowski Branch: optresult Changeset: r78109:db9ae212ed3c Date: 2015-06-15 13:00 +0200 http://bitbucket.org/pypy/pypy/changeset/db9ae212ed3c/ Log:an attempt to sort out vtable mess diff --git a/rpython/jit/backend/llgraph/runner.py b/rpython/jit/backend/llgraph/runner.py -

[pypy-commit] pypy optresult: add a fast path to avoid issues with JitVirtualRef

2015-06-15 Thread fijal
Author: Maciej Fijalkowski Branch: optresult Changeset: r78110:69624489a478 Date: 2015-06-15 13:02 +0200 http://bitbucket.org/pypy/pypy/changeset/69624489a478/ Log:add a fast path to avoid issues with JitVirtualRef diff --git a/rpython/jit/backend/llsupport/descr.py b/rpython/jit/backend/ll

[pypy-commit] pypy optresult: merge

2015-06-15 Thread fijal
Author: Maciej Fijalkowski Branch: optresult Changeset: r78113:c81b38d01c8e Date: 2015-06-15 13:09 +0200 http://bitbucket.org/pypy/pypy/changeset/c81b38d01c8e/ Log:merge diff --git a/rpython/jit/backend/llsupport/rewrite.py b/rpython/jit/backend/llsupport/rewrite.py --- a/rpython/jit/backen

[pypy-commit] pypy optresult: fixes

2015-06-15 Thread fijal
Author: Maciej Fijalkowski Branch: optresult Changeset: r78112:efd889daffae Date: 2015-06-15 13:07 +0200 http://bitbucket.org/pypy/pypy/changeset/efd889daffae/ Log:fixes diff --git a/rpython/jit/backend/llsupport/descr.py b/rpython/jit/backend/llsupport/descr.py --- a/rpython/jit/backend/ll

[pypy-commit] pypy optresult: add a comment

2015-06-15 Thread fijal
Author: Maciej Fijalkowski Branch: optresult Changeset: r78111:d8fba7cf087d Date: 2015-06-15 13:02 +0200 http://bitbucket.org/pypy/pypy/changeset/d8fba7cf087d/ Log:add a comment diff --git a/rpython/jit/backend/llsupport/descr.py b/rpython/jit/backend/llsupport/descr.py --- a/rpython/jit/ba