| Commit message (Expand) | Author | Age | Files | Lines |
* | #453 | Armin Rigo | 2020-05-20 | 1 | -2/+2 |
* | Didn't figure out how to cleanly define charN_t inside _cffi_include.h. | Armin Rigo | 2017-06-04 | 1 | -3/+6 |
* | Follow-up on b87441f6f36c | Armin Rigo | 2017-01-20 | 1 | -6/+7 |
* | Mark these three source files as deprecated | Armin Rigo | 2016-02-10 | 1 | -0/+3 |
* | in-progress, but found a problem | Armin Rigo | 2015-10-06 | 1 | -1/+5 |
* | Fix the verify() for const fields too, because it's very easy | Armin Rigo | 2015-09-30 | 1 | -1/+2 |
* | in-progress: add qualifiers through model.py, cparser.py, and recompiler.py | Armin Rigo | 2015-09-30 | 1 | -4/+7 |
* | Test and fix for ffi.verify() only on PyPy (thanks Alex Gaynor for | Armin Rigo | 2015-06-02 | 1 | -3/+12 |
* | Fix for test_vgen.test_struct_returned_by_func (and uniformize the error mess... | Armin Rigo | 2015-04-24 | 1 | -0/+4 |
* | Reimplement vengine_gen returning incomplete structs. | Armin Rigo | 2015-04-24 | 1 | -7/+27 |
* | Fix (thanks gkcn on irc): in cdef() we can say "#define FOO 42", but | Armin Rigo | 2015-01-11 | 1 | -34/+62 |
* | Silence the new gcc warnings when comparing 'unsigned >= 0' or 'unsigned < 0'. | Armin Rigo | 2014-12-28 | 1 | -4/+4 |
* | Update the copies of that block of #ifs | Armin Rigo | 2014-12-24 | 1 | -0/+18 |
* | Merged in dalcinl/python-cffi (pull request #52) | Armin Rigo | 2014-12-22 | 1 | -0/+1 |
|\ |
|
| * | Silence GCC/Clang -Wunused-parameter warnings | Lisandro Dalcin | 2014-11-24 | 1 | -0/+1 |
* | | Add dlopen flags to verify on pypy | Romain Guillebert | 2014-10-21 | 1 | -2/+2 |
|/ |
|
* | Fix for Windows, which doesn't have a reasonable snprintf() | Armin Rigo | 2014-07-05 | 1 | -4/+4 |
* | Avoid using ssize_t here | Armin Rigo | 2014-06-24 | 1 | -3/+3 |
* | Don't check MS_WIN32, it's not always defined even on MSVC. | Armin Rigo | 2014-06-24 | 1 | -1/+1 |
* | Add stdint.h as an explicit include on non-Windows too. | Armin Rigo | 2014-06-24 | 1 | -0/+1 |
* | Unify (manually) the three blocks of #ifs for Windows. Add a comment | Armin Rigo | 2014-06-24 | 1 | -16/+22 |
* | tweak for Windows (msvc versus mingw) | Armin Rigo | 2014-05-30 | 1 | -0/+2 |
* | Issue #142: don't generate C files that use '$' in identifiers. | Armin Rigo | 2014-04-04 | 1 | -2/+7 |
* | Issue #118: improve the detection and error message, jumping | Armin Rigo | 2013-11-10 | 1 | -4/+15 |
* | Test and fix: a remaining deadlock | Armin Rigo | 2013-11-09 | 1 | -1/+2 |
* | Add locking. Not really tested, apart from the absence of double locking.thread-safe | Armin Rigo | 2013-11-09 | 1 | -8/+10 |
* | Fix vengine_gen for global arrays with [...]. | Armin Rigo | 2013-11-08 | 1 | -1/+21 |
* | Fix some tests | Armin Rigo | 2013-11-08 | 1 | -6/+10 |
* | Support partial unions in a way very similar to partial structs. | Armin Rigo | 2013-10-17 | 1 | -1/+1 |
* | Fixes #110 - Support different so suffixes | Donald Stufft | 2013-10-06 | 1 | -9/+9 |
* | issue 102: allow ffi.typeof() to work on functions taking a struct | Armin Rigo | 2013-09-11 | 1 | -2/+5 |
* | In this case, we must call backend.load_library() with a path | Armin Rigo | 2013-08-07 | 1 | -1/+3 |
* | Issue #81 resolved: dir(ffi.verify(...)) | Armin Rigo | 2013-05-30 | 1 | -9/+18 |
* | Fix (motivated by a pypy without cpyext): if we're using vengine_gen.py, | Armin Rigo | 2013-05-20 | 1 | -1/+11 |
* | Fix for enums used as bitfields. (thanks jerith) | Armin Rigo | 2013-05-05 | 1 | -2/+2 |
* | Generate correct type name for pointers to arrays. | Tom Nixon | 2013-03-02 | 1 | -4/+2 |
* | explanatory commentlibrary-module | Alex Gaynor | 2013-02-25 | 1 | -1/+4 |
* | Make the library be a ModuleType subclass so that on PyPy it is optimized for... | Alex Gaynor | 2013-02-24 | 1 | -4/+6 |
* | Python 3. | Armin Rigo | 2012-11-30 | 1 | -2/+2 |
* | Generalize the error reporting: attach the name of the current | Armin Rigo | 2012-11-29 | 1 | -13/+17 |
* | Improve error reporting for functions that return an opaque type. | Armin Rigo | 2012-11-29 | 1 | -1/+5 |
* | Remove dictionary-order dependencies. | Armin Rigo | 2012-11-28 | 1 | -2/+5 |
* | Fix for Win32. | Armin Rigo | 2012-11-25 | 1 | -1/+6 |
* | Move around the _Bool declaration | Armin Rigo | 2012-11-20 | 1 | -0/+1 |
* | Remove dead declaration. | Armin Rigo | 2012-11-17 | 1 | -2/+0 |
* | Fixes for Python 3. | Armin Rigo | 2012-10-10 | 1 | -1/+1 |
* | Keep the loaded libraries alive as long as the 'ffi' object is kept alive. | Armin Rigo | 2012-10-09 | 1 | -0/+1 |
* | Fix (thanks Hakan Ardo) | Armin Rigo | 2012-09-27 | 1 | -1/+1 |
* | Test and fix (thanks Sarvi on python-cffi): there was some dependency | Armin Rigo | 2012-09-11 | 1 | -8/+12 |
* | Some sort of simplification of the logic of discovering field | Armin Rigo | 2012-08-26 | 1 | -54/+48 |