[pypy-commit] cffi cffi-1.0: Fix

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1979:312ba53a9970 Date: 2015-05-12 10:04 +0200 http://bitbucket.org/cffi/cffi/changeset/312ba53a9970/ Log:Fix diff --git a/_cffi1/parse_c_type.c b/_cffi1/parse_c_type.c --- a/_cffi1/parse_c_type.c +++ b/_cffi1/parse_c_type.c @@ -370,10 +370,11

[pypy-commit] cffi cffi-1.0: Fix for 3.4.1 (this version forces -Werror=declaration-after-statement)

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1981:9ea7c5347d6b Date: 2015-05-12 10:24 +0200 http://bitbucket.org/cffi/cffi/changeset/9ea7c5347d6b/ Log:Fix for 3.4.1 (this version forces -Werror=declaration-after- statement) diff --git a/_cffi1/ffi_obj.c b/_cffi1/ffi_obj.c --- a/_c

[pypy-commit] cffi cffi-1.0: Hum, we need to close manually the subprocess.PIPE it seems

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1980:c7a22595754b Date: 2015-05-12 10:15 +0200 http://bitbucket.org/cffi/cffi/changeset/c7a22595754b/ Log:Hum, we need to close manually the subprocess.PIPE it seems diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -23,6 +23,7

[pypy-commit] cffi cffi-1.0: tweak

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1982:d8faeba6ed11 Date: 2015-05-12 10:30 +0200 http://bitbucket.org/cffi/cffi/changeset/d8faeba6ed11/ Log:tweak diff --git a/cffi/api.py b/cffi/api.py --- a/cffi/api.py +++ b/cffi/api.py @@ -484,7 +484,7 @@ self._recompiler_module_name

[pypy-commit] cffi cffi-1.0: more fixes

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1988:109927668360 Date: 2015-05-12 11:18 +0200 http://bitbucket.org/cffi/cffi/changeset/109927668360/ Log:more fixes diff --git a/c/test_c.py b/c/test_c.py --- a/c/test_c.py +++ b/c/test_c.py @@ -3346,4 +3346,4 @@ def test_version(): #

[pypy-commit] cffi cffi-1.0: Move into a misc/ subdir

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1986:607ddf5eea22 Date: 2015-05-12 10:46 +0200 http://bitbucket.org/cffi/cffi/changeset/607ddf5eea22/ Log:Move into a misc/ subdir diff --git a/doc/design.rst b/doc/misc/design.rst rename from doc/design.rst rename to doc/misc/design.rst diff -

[pypy-commit] cffi cffi-1.0: Move the remaining interesting parts of the PLAN file to doc/

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1984:971a4b0c5aa4 Date: 2015-05-12 10:44 +0200 http://bitbucket.org/cffi/cffi/changeset/971a4b0c5aa4/ Log:Move the remaining interesting parts of the PLAN file to doc/ diff --git a/_cffi1/PLAN b/_cffi1/PLAN deleted file mode 100644 --- a/_cffi1

[pypy-commit] cffi cffi-1.0: the big Moving Files Around step

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1987:e5e9670e96d2 Date: 2015-05-12 11:07 +0200 http://bitbucket.org/cffi/cffi/changeset/e5e9670e96d2/ Log:the big Moving Files Around step diff --git a/_cffi1/__init__.py b/_cffi1/__init__.py deleted file mode 100644 --- a/_cffi1/__init__.py ++

[pypy-commit] cffi cffi-1.0: in-progress

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1983:456f626c06ea Date: 2015-05-12 10:30 +0200 http://bitbucket.org/cffi/cffi/changeset/456f626c06ea/ Log:in-progress diff --git a/_cffi1/manual2.py b/_cffi1/manual2.py --- a/_cffi1/manual2.py +++ b/_cffi1/manual2.py @@ -3,7 +3,7 @@ ffi = _cff

[pypy-commit] cffi cffi-1.0: Move the grant proposal to doc/

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1985:397c42ea63b7 Date: 2015-05-12 10:45 +0200 http://bitbucket.org/cffi/cffi/changeset/397c42ea63b7/ Log:Move the grant proposal to doc/ diff --git a/_cffi1/cffi-1.0.rst b/doc/grant-cffi-1.0.rst rename from _cffi1/cffi-1.0.rst rename to doc/gr

[pypy-commit] cffi cffi-1.0: Update MANIFEST.in

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1989:9c4ebb9902ac Date: 2015-05-12 11:24 +0200 http://bitbucket.org/cffi/cffi/changeset/9c4ebb9902ac/ Log:Update MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,7 +1,6 @@ -recursive-include cffi *.py

[pypy-commit] cffi cffi-1.0: Python 3 compat

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1990:2d82a0275317 Date: 2015-05-12 11:32 +0200 http://bitbucket.org/cffi/cffi/changeset/2d82a0275317/ Log:Python 3 compat diff --git a/c/cdlopen.c b/c/cdlopen.c --- a/c/cdlopen.c +++ b/c/cdlopen.c @@ -193,18 +193,21 @@ nintconsts = (cd

[pypy-commit] pypy.org extradoc: Update the module lists

2015-05-12 Thread arigo
Author: Armin Rigo Branch: extradoc Changeset: r602:c1a8a7dcfd8a Date: 2015-05-12 11:47 +0200 http://bitbucket.org/pypy/pypy.org/changeset/c1a8a7dcfd8a/ Log:Update the module lists diff --git a/compat.html b/compat.html --- a/compat.html +++ b/compat.html @@ -84,11 +84,11 @@ library are imp

[pypy-commit] cffi cffi-1.0: Getting started on 'recompiler' producing a python file for dlopen()

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1991:c7865fba2eeb Date: 2015-05-12 14:11 +0200 http://bitbucket.org/cffi/cffi/changeset/c7865fba2eeb/ Log:Getting started on 'recompiler' producing a python file for dlopen() diff --git a/cffi/cffi_opcode.py b/cffi/cffi_opcode.py --- a/cffi/cff

[pypy-commit] cffi cffi-1.0: in-progress

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1993:06675c9b1ad6 Date: 2015-05-12 16:01 +0200 http://bitbucket.org/cffi/cffi/changeset/06675c9b1ad6/ Log:in-progress diff --git a/cffi/cffi_opcode.py b/cffi/cffi_opcode.py --- a/cffi/cffi_opcode.py +++ b/cffi/cffi_opcode.py @@ -1,4 +1,3 @@ -im

[pypy-commit] cffi cffi-1.0: test and fix

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1994:42b3895b68e8 Date: 2015-05-12 16:10 +0200 http://bitbucket.org/cffi/cffi/changeset/42b3895b68e8/ Log:test and fix diff --git a/cffi/recompiler.py b/cffi/recompiler.py --- a/cffi/recompiler.py +++ b/cffi/recompiler.py @@ -4,7 +4,7 @@ c

[pypy-commit] cffi cffi-1.0: Make "static const int FOO = VALUE; " fully equivalent to "#define FOO VALUE"

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1992:cbd812009db2 Date: 2015-05-12 15:52 +0200 http://bitbucket.org/cffi/cffi/changeset/cbd812009db2/ Log:Make "static const int FOO = VALUE;" fully equivalent to "#define FOO VALUE" diff --git a/cffi/cparser.py b/cffi/cparser.py --- a/

[pypy-commit] cffi cffi-1.0: test and fix

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1995:27b0150bc868 Date: 2015-05-12 16:12 +0200 http://bitbucket.org/cffi/cffi/changeset/27b0150bc868/ Log:test and fix diff --git a/cffi/recompiler.py b/cffi/recompiler.py --- a/cffi/recompiler.py +++ b/cffi/recompiler.py @@ -888,10 +888,14 @@

[pypy-commit] cffi cffi-1.0: test and fix

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1996:affd940b95da Date: 2015-05-12 16:15 +0200 http://bitbucket.org/cffi/cffi/changeset/affd940b95da/ Log:test and fix diff --git a/cffi/recompiler.py b/cffi/recompiler.py --- a/cffi/recompiler.py +++ b/cffi/recompiler.py @@ -921,7 +921,7 @@

[pypy-commit] pypy vecopt: vector add now passing for double floating points

2015-05-12 Thread plan_rich
Author: Richard Plangger Branch: vecopt Changeset: r77297:786c0adbf389 Date: 2015-05-12 09:51 +0200 http://bitbucket.org/pypy/pypy/changeset/786c0adbf389/ Log:vector add now passing for double floating points diff --git a/rpython/jit/backend/x86/assembler.py b/rpython/jit/backend/x86/assemb

[pypy-commit] pypy vecopt: added integer/float types to zjit test (int 8, 16, 32, 64, float 32, 64)

2015-05-12 Thread plan_rich
Author: Richard Plangger Branch: vecopt Changeset: r77298:40afd88ea5d8 Date: 2015-05-12 16:21 +0200 http://bitbucket.org/pypy/pypy/changeset/40afd88ea5d8/ Log:added integer/float types to zjit test (int 8,16,32,64, float 32,64) extended test_add to use different types than int64/float

[pypy-commit] cffi cffi-1.0: Next test passes

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1997:d09580fc365a Date: 2015-05-12 16:17 +0200 http://bitbucket.org/cffi/cffi/changeset/d09580fc365a/ Log:Next test passes diff --git a/testing/cffi1/test_dlopen.py b/testing/cffi1/test_dlopen.py --- a/testing/cffi1/test_dlopen.py +++ b/testing

[pypy-commit] cffi cffi-1.0: enum

2015-05-12 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1998:e72977e45c75 Date: 2015-05-12 17:03 +0200 http://bitbucket.org/cffi/cffi/changeset/e72977e45c75/ Log:enum diff --git a/cffi/recompiler.py b/cffi/recompiler.py --- a/cffi/recompiler.py +++ b/cffi/recompiler.py @@ -2,6 +2,11 @@ from cffi im

[pypy-commit] pypy cells-local-stack: merge default

2015-05-12 Thread cfbolz
Author: Carl Friedrich Bolz Branch: cells-local-stack Changeset: r77299:93e76a7a9923 Date: 2015-05-12 17:07 +0200 http://bitbucket.org/pypy/pypy/changeset/93e76a7a9923/ Log:merge default diff --git a/lib-python/2.7/socket.py b/lib-python/2.7/socket.py --- a/lib-python/2.7/socket.py +++ b/lib

[pypy-commit] pypy default: when escaping an array, remember its length

2015-05-12 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r77300:64c5ab2ff81e Date: 2015-05-12 18:32 +0200 http://bitbucket.org/pypy/pypy/changeset/64c5ab2ff81e/ Log:when escaping an array, remember its length diff --git a/rpython/jit/metainterp/optimizeopt/test/test_optimizebasic.py b/rpython/jit/me

[pypy-commit] pypy numpy-fixes: test, fix array bound overflow caused by not recalculating backstrides

2015-05-12 Thread mattip
Author: mattip Branch: numpy-fixes Changeset: r77301:3a04c1efa907 Date: 2015-05-12 23:15 +0300 http://bitbucket.org/pypy/pypy/changeset/3a04c1efa907/ Log:test, fix array bound overflow caused by not recalculating backstrides diff --git a/pypy/module/micronumpy/ndarray.py b/pypy/modu

[pypy-commit] pypy default: test, fix for issue #2046

2015-05-12 Thread mattip
Author: mattip Branch: Changeset: r77302:30fa3802a882 Date: 2015-05-13 07:41 +0300 http://bitbucket.org/pypy/pypy/changeset/30fa3802a882/ Log:test, fix for issue #2046 diff --git a/pypy/module/micronumpy/concrete.py b/pypy/module/micronumpy/concrete.py --- a/pypy/module/micronumpy/concrete

[pypy-commit] pypy numpy-fixes: document branch

2015-05-12 Thread mattip
Author: mattip Branch: numpy-fixes Changeset: r77304:bb08d0e0b673 Date: 2015-05-13 07:47 +0300 http://bitbucket.org/pypy/pypy/changeset/bb08d0e0b673/ Log:document 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

[pypy-commit] pypy numpy-fixes: merge default into branch

2015-05-12 Thread mattip
Author: mattip Branch: numpy-fixes Changeset: r77303:0a9ce2fd743a Date: 2015-05-13 07:45 +0300 http://bitbucket.org/pypy/pypy/changeset/0a9ce2fd743a/ Log:merge default into branch diff --git a/lib-python/2.7/socket.py b/lib-python/2.7/socket.py --- a/lib-python/2.7/socket.py +++ b/lib-python

[pypy-commit] pypy cells-local-stack: close to-be-merged branch

2015-05-12 Thread cfbolz
Author: Carl Friedrich Bolz Branch: cells-local-stack Changeset: r77305:204a24920d5d Date: 2015-05-13 08:01 +0200 http://bitbucket.org/pypy/pypy/changeset/204a24920d5d/ Log:close to-be-merged branch ___ pypy-commit mailing list [email protected]

[pypy-commit] pypy default: merge default

2015-05-12 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r77307:bd704034a4b5 Date: 2015-05-13 08:10 +0200 http://bitbucket.org/pypy/pypy/changeset/bd704034a4b5/ Log:merge default diff --git a/pypy/module/micronumpy/concrete.py b/pypy/module/micronumpy/concrete.py --- a/pypy/module/micronumpy/concret

[pypy-commit] pypy default: merge cells-local-stack

2015-05-12 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r77306:a069d938fb12 Date: 2015-05-13 08:09 +0200 http://bitbucket.org/pypy/pypy/changeset/a069d938fb12/ Log:merge cells-local-stack unify the PyFrame.cells and Pyframe.locals_stack_w lists, making frame objects 1 or 3 words smal