| Commit message (Expand) | Author | Age | Files | Lines |
| * | fix python 3.x compatibility for test_zdistfix-zdist-test | Felix Yan | 2015-08-20 | 1 | -3/+4 |
| * | Windows test fix | Armin Rigo | 2015-08-19 | 1 | -1/+4 |
| * | From https://github.com/pyca/cryptography/pull/2156: add the pre_run() | Armin Rigo | 2015-08-01 | 1 | -1/+16 |
| * | Support "\" escapes in a #define | Armin Rigo | 2015-07-30 | 1 | -0/+12 |
| * | Handle line continuations in the "//" comments | Armin Rigo | 2015-07-30 | 1 | -0/+17 |
| * | Issue #214: parse function declarations like "int foo(void_t);" where | Armin Rigo | 2015-07-30 | 1 | -0/+7 |
| * | In non-C++ mode, we need a warning to be turned into an error | Armin Rigo | 2015-07-09 | 1 | -0/+3 |
| * | Python 3 compatibility | Armin Rigo | 2015-07-06 | 3 | -5/+6 |
| * | Explicitly protect against variables that end up resolving at address NULL, | Armin Rigo | 2015-07-06 | 1 | -0/+19 |
| * | Port the new_allocator() work from pypy | Armin Rigo | 2015-07-06 | 2 | -0/+163 |
| * | Show a semi-hackish way to get at the value of the arguments when the | Armin Rigo | 2015-07-04 | 1 | -2/+5 |
| * | New argument "onerror" on ffi.callback() | Armin Rigo | 2015-07-04 | 2 | -0/+45 |
| * | Use the logic in cgc.c to implement ffi.gc() also for the pure Python | Armin Rigo | 2015-07-04 | 1 | -2/+5 |
| * | Refactor the way global variables are accessed. Now, every access to | Armin Rigo | 2015-07-03 | 2 | -13/+84 |
| * | Write a test for issue #212 | Armin Rigo | 2015-07-03 | 1 | -0/+12 |
| * | Issue #207: fix for anonymous enums with ffi.include() | Armin Rigo | 2015-06-29 | 1 | -0/+11 |
| * | ffi.include(ffi) doesn't make sense and hangs right now | Armin Rigo | 2015-06-29 | 1 | -0/+4 |
| * | Test and fix: Python 3.5 (at least the current beta) is unhappy | Armin Rigo | 2015-06-26 | 1 | -0/+2 |
| * | Fix tests for Python 3 | Armin Rigo | 2015-06-23 | 2 | -1/+3 |
| * | Add a passing test | Armin Rigo | 2015-06-23 | 1 | -0/+16 |
| * | Redo lib.__dict__, like in the in-line mode. Figured out that it's like | Armin Rigo | 2015-06-19 | 1 | -1/+10 |
| * | "from foo.lib import *" | Armin Rigo | 2015-06-15 | 2 | -4/+15 |
| * | Allow "from _cffimodule.lib import a, b, c". (thanks DanielHolth on irc) | Armin Rigo | 2015-06-15 | 2 | -0/+21 |
| * | Explicitly complain if we find 'typedef int... t;' in a call to verify() | Armin Rigo | 2015-06-15 | 1 | -0/+12 |
| * | Correctly locate py2.7 debug build extensions | Stefano Rivera | 2015-06-14 | 1 | -1/+6 |
| * | on pypy, the _cffi_backend module doesn't have a __file__ at all | Armin Rigo | 2015-06-12 | 1 | -0/+2 |
| * | Make the test more precise | Armin Rigo | 2015-06-09 | 1 | -3/+4 |
| * | Add some checks that will fail in PyPy | Armin Rigo | 2015-06-09 | 1 | -0/+4 |
| * | Support "[][...]", "[5][...]", etc. | Armin Rigo | 2015-06-07 | 1 | -0/+33 |
| * | Some details | Armin Rigo | 2015-06-07 | 2 | -28/+21 |
| * | Fix the logic to handle ffi.gc(x) being called several times with equal | Armin Rigo | 2015-06-06 | 2 | -0/+98 |
| * | In the type parser, escape error messages and don't display the input | Armin Rigo | 2015-06-02 | 1 | -0/+6 |
| * | Test and fix for ffi.verify() only on PyPy (thanks Alex Gaynor for | Armin Rigo | 2015-06-02 | 1 | -0/+8 |
| * | Issue #204: second try | Armin Rigo | 2015-06-01 | 1 | -8/+11 |
| * | Backed out changeset 3b9f80a475ee: not supported on python 2.6 | Armin Rigo | 2015-06-01 | 1 | -8/+7 |
| * | Issue #204: Spinkle "--no-user-cfg" in this test to avoid getting | Armin Rigo | 2015-06-01 | 1 | -7/+8 |
| * | Windows test fix, and documentation about ffi.dlopen()'s restriction | Armin Rigo | 2015-06-01 | 1 | -1/+5 |
| * | Issue #203: add keyword arguments to ffi.string(), ffi.buffer(), | Armin Rigo | 2015-06-01 | 1 | -1/+11 |
| * | Tests for ffi.dlopen(None) | Armin Rigo | 2015-06-01 | 1 | -1/+9 |
| * | Actually, we can test directly that getptr() returns the address of the | Armin Rigo | 2015-05-31 | 1 | -4/+1 |
| * | Trying to change the test to match the real use case more closely | Armin Rigo | 2015-05-31 | 1 | -13/+11 |
| * | don't use A0, B0, CC0, D0 because termios.h might be included and it has | Armin Rigo | 2015-05-31 | 1 | -6/+8 |
| * | Remove old 'flags=' which is just ignored by distutils | Armin Rigo | 2015-05-31 | 1 | -2/+1 |
| * | Add a test that is hopefully passing on all platforms | Armin Rigo | 2015-05-31 | 1 | -0/+10 |
| * | Check that the types declared with "typedef int... foo_t;" are really | Armin Rigo | 2015-05-30 | 2 | -6/+9 |
| * | pypy compat | Armin Rigo | 2015-05-30 | 1 | -2/+4 |
| * | Issue 200: bad interaction between "ffi.typeof(function_t)" and | Armin Rigo | 2015-05-30 | 1 | -0/+13 |
| * | Issues 69, 73: add the syntax "typedef int... foo_t;". | Armin Rigo | 2015-05-30 | 2 | -1/+74 |
| * | Issue 75: implement multidimensional use of '[...]'. | Armin Rigo | 2015-05-30 | 1 | -0/+25 |
| * | add a passing test | Armin Rigo | 2015-05-28 | 1 | -0/+15 |