| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | (Lisandro Dalcin, part of issue 141) | Armin Rigo | 2014-03-19 | 1 | -1/+0 |
| | | | | | | Check for "__thread" by asking distutils specifically for the same compiler as the one it will use later. | ||||
| * | Skip a test on Windows | Armin Rigo | 2014-03-07 | 1 | -0/+2 |
| | | |||||
| * | Update to 0.8.2 more officially | Armin Rigo | 2014-03-07 | 2 | -2/+2 |
| | | |||||
| * | Clean up 'sflags'. It was failing because suddenly passing a value | Armin Rigo | 2014-03-05 | 2 | -50/+74 |
| | | | | | | of 0 as argument was not equivalent to not passing any argument at all. | ||||
| * | Add a passing test | Armin Rigo | 2014-02-28 | 1 | -0/+3 |
| | | |||||
| * | merge heads | Antonio Cuni | 2014-02-27 | 1 | -1/+1 |
| |\ | |||||
| | * | Maybe a better error message | Armin Rigo | 2014-01-21 | 1 | -1/+1 |
| | | | |||||
| * | | newer versions of PyPy emit a slightly different error message | Antonio Cuni | 2014-02-27 | 1 | -2/+4 |
| |/ | |||||
| * | Raise a NotImplementedError in one messy corner case | Armin Rigo | 2014-01-20 | 2 | -0/+18 |
| | | |||||
| * | Fix | Armin Rigo | 2014-01-18 | 1 | -0/+1 |
| | | |||||
| * | Issue 131: support ffi.cdef("...", packed=True) | Armin Rigo | 2014-01-14 | 2 | -2/+31 |
| | | |||||
| * | Issue 134: add #ifdef _AIX | Armin Rigo | 2014-01-13 | 1 | -1/+1 |
| | | |||||
| * | Kill the __unicode__ method and let it behave as it does normally | Armin Rigo | 2013-12-06 | 2 | -20/+6 |
| | | | | | even if it's one more (obscure) difference between Py2 and 3. | ||||
| * | Fix for issue #129: 'bytes(buffer)' needs to work on Python 2, | Armin Rigo | 2013-12-06 | 2 | -1/+33 |
| | | | | | because it works on Python 3 and cannot be prevented to. | ||||
| * | Include <alloca.h> on Solaris. Uses the same hack as CPython's | Armin Rigo | 2013-12-06 | 1 | -0/+3 |
| | | | | | ctypes. Fixes issue #128. | ||||
| * | An extra test | Armin Rigo | 2013-11-30 | 1 | -0/+6 |
| | | |||||
| * | Skip these tests on FreeBSD too | Armin Rigo | 2013-11-18 | 1 | -3/+9 |
| | | |||||
| * | Carefully write the Python 3 version of getwinerror(). I have no way to | Armin Rigo | 2013-11-12 | 1 | -0/+49 |
| | | | | | know if I did a typo there. | ||||
| * | Add ffi.getwinerror(). | Armin Rigo | 2013-11-12 | 3 | -0/+61 |
| | | |||||
| * | Update the version number | Armin Rigo | 2013-11-09 | 2 | -2/+2 |
| | | |||||
| * | Fix a segfault | Armin Rigo | 2013-11-09 | 2 | -7/+7 |
| | | |||||
| * | Support "number + pointer" too, like in C | Armin Rigo | 2013-11-09 | 2 | -2/+10 |
| | | |||||
| * | Arithmetic using "void *" should work; at least it does in gcc without | Armin Rigo | 2013-11-09 | 2 | -13/+32 |
| | | | | | warning. | ||||
| * | Test and fix for issue #99. | Armin Rigo | 2013-11-08 | 2 | -0/+35 |
| | | |||||
| * | Allow varsized arrays to appear at a non-last position in case of a | Armin Rigo | 2013-11-08 | 2 | -1/+40 |
| | | | | | verify()ed structure | ||||
| * | Implementation: support a few extra ways to give initialization arguments to ↵ | Armin Rigo | 2013-11-08 | 2 | -79/+240 |
| | | | | | | | ffi.new() for var-sized structs. See the test. | ||||
| * | Add PyPy support for big-endian bitfields | Armin Rigo | 2013-10-23 | 1 | -2/+0 |
| | | |||||
| * | A redo of pull request 19: dynamically determine if the C compiler | Armin Rigo | 2013-09-25 | 2 | -6/+3 |
| | | | | | | supports "__thread" or not on this platform. Done slightly more simply in setup.py. | ||||
| * | Fix bitfields on big-endian machines | Armin Rigo | 2013-09-01 | 2 | -8/+61 |
| | | |||||
| * | Fix for win64 | Armin Rigo | 2013-08-01 | 1 | -1/+6 |
| | | |||||
| * | Py3k fix | Armin Rigo | 2013-08-01 | 1 | -2/+2 |
| | | |||||
| * | I have seriously no clue how Win64 ctypes work | Armin Rigo | 2013-08-01 | 1 | -2/+2 |
| | | |||||
| * | Backed out changeset a0bbd364d7a2 | Armin Rigo | 2013-08-01 | 1 | -3/+0 |
| | | |||||
| * | Fix | Armin Rigo | 2013-08-01 | 1 | -0/+3 |
| | | |||||
| * | Attempted fix | Armin Rigo | 2013-08-01 | 1 | -0/+5 |
| | | |||||
| * | Bah? | Armin Rigo | 2013-08-01 | 1 | -1/+1 |
| | | |||||
| * | I fail to see how "cif->bytes ? cif->bytes : 40" means "at least 40". | Armin Rigo | 2013-08-01 | 2 | -2/+7 |
| | | | | | It seems to mean only "not 0" to me. | ||||
| * | Add three tests about callbacks receiving inlined structure arguments | Armin Rigo | 2013-07-18 | 1 | -0/+55 |
| | | |||||
| * | Add a test | Armin Rigo | 2013-07-18 | 1 | -0/+17 |
| | | |||||
| * | Attempt a fix for Win64 | Armin Rigo | 2013-07-18 | 1 | -0/+9 |
| | | |||||
| * | Attempt to get rid of USE_C_LIBFFI_MSVC by really fixing libffi_msvc. | Armin Rigo | 2013-07-18 | 3 | -20/+18 |
| | | |||||
| * | Check in win64.obj, thanks Matti :-) | Armin Rigo | 2013-07-18 | 1 | -0/+0 |
| | | |||||
| * | Found and fixed the bug. | Armin Rigo | 2013-07-18 | 1 | -0/+2 |
| | | |||||
| * | I think that this should clean up the (relative) mess of the GC on | Armin Rigo | 2013-07-18 | 1 | -38/+91 |
| | | | | | some-but-not-all cdata objects. The test still doesn't pass though. | ||||
| * | A test, and start to work on a fix, which doesn't work so far | Armin Rigo | 2013-07-16 | 2 | -1/+33 |
| | | |||||
| * | Finish the fix for issue #91. | Armin Rigo | 2013-06-19 | 2 | -12/+12 |
| | | |||||
| * | merge heads | Armin Rigo | 2013-06-19 | 2 | -69/+67 |
| |\ | |||||
| | * | Attack issue 91; first step. | Armin Rigo | 2013-06-19 | 2 | -69/+67 |
| | | | |||||
| * | | extend and fix test_c.py for ARM | David Schneider | 2013-06-16 | 1 | -5/+16 |
| | | | |||||
| * | | check for ARM using a flag like it is done for MSVC | David Schneider | 2013-06-16 | 1 | -3/+6 |
| |/ | |||||
