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

2015-05-17 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: cffi-1.0 Changeset: r2022:33893ccb35f0 Date: 2015-05-17 10:21 +0200 http://bitbucket.org/cffi/cffi/changeset/33893ccb35f0/ Log:in-progress diff --git a/TODO b/TODO --- a/TODO +++ b/TODO @@ -1,18 +1,10 @@ -* write docs! also, remember to remove

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

2015-05-17 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: cffi-1.0 Changeset: r2023:35283f41c772 Date: 2015-05-17 10:37 +0200 http://bitbucket.org/cffi/cffi/changeset/35283f41c772/ Log:in-progress diff --git a/TODO b/TODO --- a/TODO +++ b/TODO @@ -1,10 +1,3 @@ -* mention todo: ffi.new(xyz) makes {xyz:

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

2015-05-17 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: cffi-1.0 Changeset: r2020:1fdf69c4 Date: 2015-05-17 09:23 +0200 http://bitbucket.org/cffi/cffi/changeset/1fdf69c4/ Log:in-progress diff --git a/doc/source/cdef.rst b/doc/source/cdef.rst --- a/doc/source/cdef.rst +++ b/doc/source/cdef.rst @@

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

2015-05-12 Thread arigo
Author: Armin Rigo ar...@tunes.org 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

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

2015-05-12 Thread arigo
Author: Armin Rigo ar...@tunes.org 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 @@

[pypy-commit] cffi cffi-1.0: in-progress: ffi.dlopen()

2015-05-11 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: cffi-1.0 Changeset: r1972:2148820bd1cb Date: 2015-05-11 13:36 +0200 http://bitbucket.org/cffi/cffi/changeset/2148820bd1cb/ Log:in-progress: ffi.dlopen() diff --git a/_cffi1/cdlopen.c b/_cffi1/cdlopen.c new file mode 100644 --- /dev/null +++

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

2015-05-11 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: cffi-1.0 Changeset: r1973:45d8b5f1fbd0 Date: 2015-05-11 15:00 +0200 http://bitbucket.org/cffi/cffi/changeset/45d8b5f1fbd0/ Log:in-progress diff --git a/TODO b/TODO --- a/TODO +++ b/TODO @@ -13,3 +13,6 @@ * mention todo: ffi.new(xyz) makes {xyz:

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

2015-04-24 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: cffi-1.0 Changeset: r1783:68760daf07ab Date: 2015-04-24 09:00 +0200 http://bitbucket.org/cffi/cffi/changeset/68760daf07ab/ Log:in-progress diff --git a/cffi/api.py b/cffi/api.py --- a/cffi/api.py +++ b/cffi/api.py @@ -568,23 +568,48 @@

[pypy-commit] cffi cffi-1.0: in-progress: declare structs on FFIs after a cdef()

2015-04-22 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: cffi-1.0 Changeset: r1775:8acbc3c22b22 Date: 2015-04-22 15:52 +0200 http://bitbucket.org/cffi/cffi/changeset/8acbc3c22b22/ Log:in-progress: declare structs on FFIs after a cdef() diff --git a/cffi/api.py b/cffi/api.py --- a/cffi/api.py +++

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

2015-04-22 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: cffi-1.0 Changeset: r1780:ded8861f09fd Date: 2015-04-22 17:39 +0200 http://bitbucket.org/cffi/cffi/changeset/ded8861f09fd/ Log:in-progress: bitfield support diff --git a/new/realize_c_type.c b/new/realize_c_type.c --- a/new/realize_c_type.c +++

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

2015-04-16 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: cffi-1.0 Changeset: r1730:d6e79e8e8194 Date: 2015-04-16 14:26 +0200 http://bitbucket.org/cffi/cffi/changeset/d6e79e8e8194/ Log:in-progress diff --git a/new/manual.c b/new/manual.c --- a/new/manual.c +++ b/new/manual.c @@ -15,6 +15,10 @@ return

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

2015-04-14 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: cffi-1.0 Changeset: r1699:943c257b5873 Date: 2015-04-14 15:35 +0200 http://bitbucket.org/cffi/cffi/changeset/943c257b5873/ Log:in-progress diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c --- a/c/_cffi_backend.c +++ b/c/_cffi_backend.c @@ -3338,7

[pypy-commit] cffi cffi-1.0: in-progress: loading C extension modules and calling functions from them

2015-04-14 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: cffi-1.0 Changeset: r1704:102edaf76b7c Date: 2015-04-14 17:29 +0200 http://bitbucket.org/cffi/cffi/changeset/102edaf76b7c/ Log:in-progress: loading C extension modules and calling functions from them diff --git a/new/cffi1_module.c

[pypy-commit] cffi cffi-1.0: in-progress: decoding function types while only having a CT_FUNCTIONPTR...

2015-04-14 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: cffi-1.0 Changeset: r1705:e725f4ea7673 Date: 2015-04-14 18:19 +0200 http://bitbucket.org/cffi/cffi/changeset/e725f4ea7673/ Log:in-progress: decoding function types while only having a CT_FUNCTIONPTR... diff --git a/c/_cffi_backend.c