| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | 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 | 2 | -3/+4 |
| * | 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 | 1 | -0/+92 |
| * | New argument "onerror" on ffi.callback() | Armin Rigo | 2015-07-04 | 1 | -0/+29 |
| * | 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 |
| * | 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 |
| * | Correctly locate py2.7 debug build extensions | Stefano Rivera | 2015-06-14 | 1 | -1/+6 |
| * | 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 | 1 | -2/+3 |
| * | Fix the logic to handle ffi.gc(x) being called several times with equal | Armin Rigo | 2015-06-06 | 1 | -0/+41 |
| * | In the type parser, escape error messages and don't display the input | Armin Rigo | 2015-06-02 | 1 | -0/+6 |
| * | 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 |
| * | Better compatibility: detect if we have an old cffi running a new ABI | Armin Rigo | 2015-05-28 | 1 | -1/+1 |
| * | py3 fix | Armin Rigo | 2015-05-28 | 2 | -2/+2 |
| * | add a passing test | Armin Rigo | 2015-05-28 | 1 | -0/+15 |
| * | ABI mode: allow constants of any type, which are looked up from the lib | Armin Rigo | 2015-05-28 | 2 | -24/+32 |
| * | Add a passing test | Armin Rigo | 2015-05-28 | 1 | -0/+11 |
| * | more about issue 198: Test and fix | Armin Rigo | 2015-05-28 | 1 | -0/+20 |
| * | Issue #198 bis: fix for constants of unknown size | Armin Rigo | 2015-05-28 | 1 | -0/+11 |
| * | Add a passing test | Armin Rigo | 2015-05-28 | 1 | -0/+9 |
| * | Issue 198: corrupted constant of type 'struct' | Armin Rigo | 2015-05-28 | 1 | -0/+18 |
| * | More test fixes | Armin Rigo | 2015-05-28 | 1 | -1/+6 |
| * | Must call at least "setup.py egg_info" in the cffi root to prepare the | Armin Rigo | 2015-05-28 | 1 | -0/+13 |
| * | Windows fix | Armin Rigo | 2015-05-27 | 1 | -2/+6 |
| * | Test and fixes for actually calling distutils and setuptools with | Armin Rigo | 2015-05-27 | 1 | -0/+143 |