| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add an optional 'size' argument to ffi.gc(). So far, it has no effect | Armin Rigo | 2017-08-02 | 1 | -2/+7 |
| * | Some test fixes for Python 3 on Windows | Armin Rigo | 2017-06-19 | 1 | -1/+4 |
| * | Issue #319 | Armin Rigo | 2017-06-15 | 1 | -1/+2 |
| * | pypy-c => pypy3-c | Armin Rigo | 2017-03-11 | 1 | -1/+4 |
| * | Improve the error message | Armin Rigo | 2017-03-10 | 1 | -10/+16 |
| * | ffi.addressof(lib, "name") now also works in in-line mode | Armin Rigo | 2017-02-07 | 1 | -5/+35 |
| * | Make 'ffi.buffer' be the type of minibuffers returned by cffi, and | Armin Rigo | 2017-02-04 | 1 | -12/+13 |
| * | complain clearly if set_source() is given a /-separated name | Armin Rigo | 2017-01-26 | 1 | -0/+4 |
| * | Move back "import cparser" to FFI.__init__, because that module only | Armin Rigo | 2017-01-20 | 1 | -1/+2 |
| * | Avoid cyclic imports by moving exceptions to a separate module | Ronan Lamy | 2017-01-20 | 1 | -17/+4 |
| * | Improve the error in case of version mismatch | Armin Rigo | 2016-12-25 | 1 | -2/+11 |
| * | Backed out changeset 0087e2aec9ef | Armin Rigo | 2016-09-03 | 1 | -12/+18 |
| * | - add ffi.compile(debug=flag) | Armin Rigo | 2016-09-03 | 1 | -2/+2 |
| * | Kill the ctypes backend. | Armin Rigo | 2016-09-03 | 1 | -18/+12 |
| * | Fix docstrings | Armin Rigo | 2016-06-03 | 1 | -2/+2 |
| * | Implement backend.gcp() for the ctypes backend, and remove gc_weakref. | Amaury Forgeot d'Arc | 2016-04-23 | 1 | -14/+1 |
| * | There is no reason to restrict ffi.unpack() to primitives. | Armin Rigo | 2016-04-17 | 1 | -4/+6 |
| * | Remove again ffi.rawstring(), and implement instead ffi.unpack(). | Armin Rigo | 2016-04-16 | 1 | -10/+13 |
| * | ffi.rawstring(), with a minimal interface | Armin Rigo | 2016-04-15 | 1 | -0/+12 |
| * | Change the API of ffi.list_types() | Armin Rigo | 2016-03-30 | 1 | -7/+6 |
| * | ffi.list_types() | Armin Rigo | 2016-03-27 | 1 | -0/+21 |
| * | more pypy tweaks | Armin Rigo | 2016-02-19 | 1 | -2/+7 |
| * | pypy on windows now stores "python27.lib" in a directory "libs" | Armin Rigo | 2016-02-15 | 1 | -6/+4 |
| * | Fix for Python 2.6 | Armin Rigo | 2016-02-13 | 1 | -1/+5 |
| * | Mention it's work in progress | Armin Rigo | 2016-02-13 | 1 | -2/+4 |
| * | Windows need the file 'libpypy-c.lib', which (unless people disagree) I | Armin Rigo | 2016-02-11 | 1 | -4/+13 |
| * | I finally managed to run the tests on Windows, but only without | Armin Rigo | 2016-02-11 | 1 | -14/+13 |
| * | allow embedding tests to run on pypy win32 | mattip | 2016-01-30 | 1 | -13/+14 |
| * | issue #243: explicitly complain if ffi.def_extern() is called on the | Armin Rigo | 2016-01-19 | 1 | -0/+4 |
| * | Windows uses '_d' even though I'm pretty sure DEBUG_EXT is a Debian-only | Armin Rigo | 2016-01-17 | 1 | -2/+4 |
| * | Don't hardcode _d. If that is the extension, it'll be in sysconfig | Stefano Rivera | 2016-01-17 | 1 | -5/+3 |
| * | Support extensions for pydebug cpythons | Stefano Rivera | 2016-01-17 | 1 | -0/+2 |
| * | OS/X: in-progress, one test now passes | Armin Rigo | 2016-01-16 | 1 | -1/+1 |
| * | win32: needs /MANIFEST | Armin Rigo | 2016-01-16 | 1 | -7/+9 |
| * | fixes for pypy | Armin Rigo | 2016-01-15 | 1 | -2/+8 |
| * | refactor details, start writing docs | Armin Rigo | 2016-01-13 | 1 | -13/+10 |
| * | Found out how to control the extension of distutils-built libraries. | Armin Rigo | 2016-01-12 | 1 | -1/+13 |
| * | Maybe it's clearer this way, with an API that matches the intent rather | Armin Rigo | 2016-01-09 | 1 | -6/+13 |
| * | kill empty lines at the start and dedent manually, to give | Armin Rigo | 2016-01-09 | 1 | -8/+21 |
| * | Py3 fix | Armin Rigo | 2016-01-08 | 1 | -0/+2 |
| * | In-progress: fix tests to attempt to use distutils also for compiling | Armin Rigo | 2016-01-07 | 1 | -7/+10 |
| * | Fix ffi.compile() to automatically link with the python library | Armin Rigo | 2016-01-07 | 1 | -0/+14 |
| * | hg merge default | Armin Rigo | 2015-12-29 | 1 | -2/+17 |
| |\ |
|
| | * | First version | Armin Rigo | 2015-12-01 | 1 | -2/+17 |
| * | | refactor the lazy-loading in dlopen() lib objects; add __dir__(). | Armin Rigo | 2015-12-08 | 1 | -54/+60 |
| * | | ffi.compile(verbose=True) | Armin Rigo | 2015-12-06 | 1 | -2/+3 |
| |/ |
|
| * | issue #233: ffi.init_once() | Armin Rigo | 2015-11-23 | 1 | -0/+25 |
| * | ffi.memmove() | Armin Rigo | 2015-10-08 | 1 | -0/+16 |
| * | Support directly __stdcall or WINAPI (or __cdecl, ignored) inside | Armin Rigo | 2015-10-06 | 1 | -3/+2 |
| * | Starting, with exactly two function types: no-abi (i.e. cdecl on windows), or... | Armin Rigo | 2015-10-05 | 1 | -2/+3 |