[pypy-commit] cffi default: Test and fix

2012-07-15 Thread arigo
Author: Armin Rigo Branch: Changeset: r655:0170315924eb Date: 2012-07-15 21:38 +0200 http://bitbucket.org/cffi/cffi/changeset/0170315924eb/ Log:Test and fix diff --git a/cffi/verifier.py b/cffi/verifier.py --- a/cffi/verifier.py +++ b/cffi/verifier.py @@ -61,6 +61,8 @@ return os.pa

[pypy-commit] pypy virtual-arguments: shift dict_unrolling_heuristics to dictmultiobject.py

2012-07-15 Thread fijal
Author: Maciej Fijalkowski Branch: virtual-arguments Changeset: r56086:b804a064343c Date: 2012-07-15 19:33 +0200 http://bitbucket.org/pypy/pypy/changeset/b804a064343c/ Log:shift dict_unrolling_heuristics to dictmultiobject.py diff --git a/pypy/objspace/std/dictmultiobject.py b/pypy/objspace

[pypy-commit] pypy virtual-arguments: eh, fix the signature

2012-07-15 Thread fijal
Author: Maciej Fijalkowski Branch: virtual-arguments Changeset: r56085:6248e1d913f7 Date: 2012-07-15 19:08 +0200 http://bitbucket.org/pypy/pypy/changeset/6248e1d913f7/ Log:eh, fix the signature diff --git a/pypy/objspace/std/dictmultiobject.py b/pypy/objspace/std/dictmultiobject.py --- a/py

[pypy-commit] pypy virtual-arguments: typo

2012-07-15 Thread fijal
Author: Maciej Fijalkowski Branch: virtual-arguments Changeset: r56084:57b904df5ce7 Date: 2012-07-15 19:05 +0200 http://bitbucket.org/pypy/pypy/changeset/57b904df5ce7/ Log:typo diff --git a/pypy/rlib/jit.py b/pypy/rlib/jit.py --- a/pypy/rlib/jit.py +++ b/pypy/rlib/jit.py @@ -217,7 +217,7 @@

[pypy-commit] pypy virtual-arguments: some more careful unrolling, start to write more test_pypy_c tests

2012-07-15 Thread fijal
Author: Maciej Fijalkowski Branch: virtual-arguments Changeset: r56083:10f43a794c15 Date: 2012-07-15 19:00 +0200 http://bitbucket.org/pypy/pypy/changeset/10f43a794c15/ Log:some more careful unrolling, start to write more test_pypy_c tests diff --git a/pypy/jit/metainterp/test/test_dict.py b

[pypy-commit] cffi default: Get rid of the versionadded and most versionchanged tags, which

2012-07-15 Thread arigo
Author: Armin Rigo Branch: Changeset: r654:77e9d4f4db93 Date: 2012-07-15 18:00 +0200 http://bitbucket.org/cffi/cffi/changeset/77e9d4f4db93/ Log:Get rid of the versionadded and most versionchanged tags, which don't add much and which are an incomplete list anyway. Kept only on

[pypy-commit] pypy virtual-arguments: for obscure reasons you cannot use jit_unroll_iff and *args. Simply

2012-07-15 Thread fijal
Author: Maciej Fijalkowski Branch: virtual-arguments Changeset: r56082:815afb4ae623 Date: 2012-07-15 17:53 +0200 http://bitbucket.org/pypy/pypy/changeset/815afb4ae623/ Log:for obscure reasons you cannot use jit_unroll_iff and *args. Simply use a direct call here and get over it. diff

[pypy-commit] cffi default: Document cffi.verifier.Verifier.

2012-07-15 Thread arigo
Author: Armin Rigo Branch: Changeset: r653:972998c8c2ca Date: 2012-07-15 17:51 +0200 http://bitbucket.org/cffi/cffi/changeset/972998c8c2ca/ Log:Document cffi.verifier.Verifier. diff --git a/doc/source/index.rst b/doc/source/index.rst --- a/doc/source/index.rst +++ b/doc/source/index.rst @@

[pypy-commit] pypy virtual-arguments: A hint to unroll view_as_kwargs if we just constructed it. Note that the size

2012-07-15 Thread fijal
Author: Maciej Fijalkowski Branch: virtual-arguments Changeset: r56081:70fc1238f840 Date: 2012-07-15 16:49 +0200 http://bitbucket.org/pypy/pypy/changeset/70fc1238f840/ Log:A hint to unroll view_as_kwargs if we just constructed it. Note that the size is limited by the size of your code

[pypy-commit] cffi default: Promote this subsection to a major section.

2012-07-15 Thread arigo
Author: Armin Rigo Branch: Changeset: r652:0d880631ae30 Date: 2012-07-15 15:22 +0200 http://bitbucket.org/cffi/cffi/changeset/0d880631ae30/ Log:Promote this subsection to a major section. diff --git a/doc/source/index.rst b/doc/source/index.rst --- a/doc/source/index.rst +++ b/doc/source/in

[pypy-commit] cffi default: Basic documentation about how to write setup.py.

2012-07-15 Thread arigo
Author: Armin Rigo Branch: Changeset: r651:bee05b55a6a2 Date: 2012-07-15 15:13 +0200 http://bitbucket.org/cffi/cffi/changeset/bee05b55a6a2/ Log:Basic documentation about how to write setup.py. diff --git a/doc/source/index.rst b/doc/source/index.rst --- a/doc/source/index.rst +++ b/doc/sour

[pypy-commit] cffi default: Yay, it works: a minimal example of setup.py to install a Python module

2012-07-15 Thread arigo
Author: Armin Rigo Branch: Changeset: r650:73277d7d943f Date: 2012-07-15 14:57 +0200 http://bitbucket.org/cffi/cffi/changeset/73277d7d943f/ Log:Yay, it works: a minimal example of setup.py to install a Python module together with the custom C extension module generated by CFF

[pypy-commit] cffi default: Final fixes.

2012-07-15 Thread arigo
Author: Armin Rigo Branch: Changeset: r649:006f22f50bb8 Date: 2012-07-15 14:45 +0200 http://bitbucket.org/cffi/cffi/changeset/006f22f50bb8/ Log:Final fixes. diff --git a/cffi/ffiplatform.py b/cffi/ffiplatform.py --- a/cffi/ffiplatform.py +++ b/cffi/ffiplatform.py @@ -24,14 +24,18 @@ re

[pypy-commit] cffi default: Test and painful fix.

2012-07-15 Thread arigo
Author: Armin Rigo Branch: Changeset: r648:c3cfc0d65718 Date: 2012-07-15 14:40 +0200 http://bitbucket.org/cffi/cffi/changeset/c3cfc0d65718/ Log:Test and painful fix. diff --git a/cffi/verifier.py b/cffi/verifier.py --- a/cffi/verifier.py +++ b/cffi/verifier.py @@ -1,4 +1,4 @@ -import sys, o

[pypy-commit] cffi default: Remove the lazy computation of the types table, and replace it

2012-07-15 Thread arigo
Author: Armin Rigo Branch: Changeset: r647:e8ea8ae6b002 Date: 2012-07-15 13:56 +0200 http://bitbucket.org/cffi/cffi/changeset/e8ea8ae6b002/ Log:Remove the lazy computation of the types table, and replace it with an eager computation. diff --git a/cffi/verifier.py b/cffi/verifier.py

[pypy-commit] cffi default: Progress.

2012-07-15 Thread arigo
Author: Armin Rigo Branch: Changeset: r646:5a1dd2f000dc Date: 2012-07-15 13:33 +0200 http://bitbucket.org/cffi/cffi/changeset/5a1dd2f000dc/ Log:Progress. diff --git a/cffi/api.py b/cffi/api.py --- a/cffi/api.py +++ b/cffi/api.py @@ -50,6 +50,7 @@ self._parsed_types = new.module('pa

[pypy-commit] jitviewer default: update the readme

2012-07-15 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r202:4454f7cf31f2 Date: 2012-07-15 13:31 +0200 http://bitbucket.org/pypy/jitviewer/changeset/4454f7cf31f2/ Log:update the readme diff --git a/README b/README --- a/README +++ b/README @@ -1,5 +1,8 @@ You need to use PyPy to run this. To get st

[pypy-commit] jitviewer default: Added tag pypy-1.9 for changeset 13e1f8c97ca7

2012-07-15 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r201:98384394c1e0 Date: 2012-07-15 13:30 +0200 http://bitbucket.org/pypy/jitviewer/changeset/98384394c1e0/ Log:Added tag pypy-1.9 for changeset 13e1f8c97ca7 diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags @@ -1,1 +1,2 @@ 24adc3403cd8