| Commit message (Expand) | Author | Age | Files | Lines |
| * | Detect and mark the final variable array in a varsized struct with BS_VARSIZE...calculate_variable_array_length | Andrew Leech | 2016-09-14 | 2 | -8/+11 |
| * | Add some initial test assertions to check length details on variable length s... | Andrew Leech | 2016-09-13 | 1 | -3/+8 |
| * | When using a variable length struct, calculate and enforce the length of the ... | Andrew Leech | 2016-09-13 | 1 | -1/+26 |
| * | When getting repr on CDataObject_own_structptr, use length field for owned bytesnew_struct_allocated_size | Andrew Leech | 2016-09-12 | 1 | -1/+3 |
| * | When getting ffi.buffer() on CDataObject_own_structptr, use length field for ... | Andrew Leech | 2016-09-12 | 1 | -1/+5 |
| * | Add length field to CDataObject_own_structptr to hold the size of the memory ... | Andrew Leech | 2016-09-12 | 1 | -0/+2 |
| * | A direct test | Armin Rigo | 2016-09-06 | 1 | -0/+19 |
| * | Update and document v1.8.2 | Armin Rigo | 2016-09-06 | 2 | -2/+2 |
| * | Issue #283: initializer for nested anonymous structs inside unions | Armin Rigo | 2016-09-05 | 1 | -17/+15 |
| * | Bump version number to 1.8.1 | Armin Rigo | 2016-09-03 | 2 | -2/+2 |
| * | Returning unions works fine in API mode, remove the checks. | Armin Rigo | 2016-08-22 | 1 | -2/+3 |
| * | Avoid calling more CPython functions when there is an exception set | Armin Rigo | 2016-08-22 | 1 | -0/+2 |
| * | Give an error when subtracting two pointers and the division's result is | Armin Rigo | 2016-08-15 | 2 | -2/+23 |
| * | Update the version number to 1.8 | Armin Rigo | 2016-08-06 | 2 | -2/+2 |
| * | The null_byte_after_str branch of PyPy makes ffi.from_buffer(str) | Armin Rigo | 2016-08-02 | 2 | -1/+11 |
| * | Fix for a3708c91be7b | Armin Rigo | 2016-07-16 | 1 | -5/+8 |
| * | Same here | Armin Rigo | 2016-07-11 | 1 | -1/+1 |
| * | Use Py_ssize_t, not ssize_t directly | Armin Rigo | 2016-07-11 | 1 | -1/+1 |
| * | Issue #266: I think it would show up here, so better change the assert() | Armin Rigo | 2016-06-09 | 1 | -1/+14 |
| * | Support dir(p), where p is a struct or pointer-to-struct, to obtain | Armin Rigo | 2016-06-06 | 2 | -2/+49 |
| * | Python3 compat | Armin Rigo | 2016-06-05 | 1 | -1/+1 |
| * | update version number to 1.7 | Armin Rigo | 2016-06-05 | 2 | -2/+2 |
| * | Add a test for another use case | Armin Rigo | 2016-06-03 | 1 | -0/+7 |
| * | Fix docstrings | Armin Rigo | 2016-06-03 | 1 | -1/+1 |
| * | Slice assignment with bytearray as source | Armin Rigo | 2016-06-03 | 2 | -12/+27 |
| * | From PyPy 5.2, bytearray buffers can fetch a raw pointer, so | Armin Rigo | 2016-06-03 | 2 | -10/+19 |
| * | Haaaack! Have 'lib.__class__' return &PyModule_Type. It makes | Armin Rigo | 2016-05-25 | 1 | -3/+7 |
| * | fix: Lib objects didn't have the cyclic GC enabled | Armin Rigo | 2016-05-25 | 1 | -3/+3 |
| * | an extra test | Armin Rigo | 2016-05-07 | 1 | -0/+1 |
| * | Issue #255: `bool(ffi.cast("primitive", x))` is now True or False | Armin Rigo | 2016-05-07 | 2 | -3/+20 |
| * | Add ffi.gc(ptr, None) which *removes* the destructor in-place on a ffi.gc() o... | Amaury Forgeot d'Arc | 2016-04-23 | 1 | -0/+11 |
| * | kill unused var | Armin Rigo | 2016-04-21 | 1 | -1/+0 |
| * | Support help(lib.foo) | Armin Rigo | 2016-04-19 | 3 | -55/+123 |
| * | update the version number to 1.6 | Armin Rigo | 2016-04-17 | 2 | -2/+2 |
| * | Oops. In this case, unpack(p) returns a list of <cdata struct> that | Armin Rigo | 2016-04-17 | 1 | -1/+2 |
| * | There is no reason to restrict ffi.unpack() to primitives. | Armin Rigo | 2016-04-17 | 3 | -15/+60 |
| * | Remove again ffi.rawstring(), and implement instead ffi.unpack(). | Armin Rigo | 2016-04-16 | 3 | -43/+154 |
| * | Python3 compat | Armin Rigo | 2016-04-15 | 1 | -4/+4 |
| * | Also accept arrays of int8_t or uint8_t, like ffi.string() | Armin Rigo | 2016-04-15 | 2 | -15/+22 |
| * | Add a test here | Armin Rigo | 2016-04-15 | 1 | -0/+15 |
| * | ffi.rawstring(), with a minimal interface | Armin Rigo | 2016-04-15 | 2 | -0/+45 |
| * | Change get_current_ts to always use _Py_atomic_load_relaxed when available. | Michael McGee | 2016-04-05 | 1 | -1/+1 |
| * | Change the API of ffi.list_types() | Armin Rigo | 2016-03-30 | 1 | -32/+35 |
| * | ffi.list_types() | Armin Rigo | 2016-03-27 | 1 | -0/+52 |
| * | Python 3 compat | Armin Rigo | 2016-03-16 | 1 | -1/+1 |
| * | Another attempt at improving the shutdown issues w.r.t. @def_extern | Armin Rigo | 2016-03-15 | 1 | -16/+44 |
| * | Update version | Armin Rigo | 2016-02-13 | 2 | -2/+2 |
| * | bump the version number | Armin Rigo | 2016-02-09 | 2 | -2/+2 |
| * | issue #246: trying to be more robust against CPython's fragile | Armin Rigo | 2016-02-06 | 1 | -4/+10 |
| * | bump version number to 1.5.0 | Armin Rigo | 2016-01-15 | 2 | -2/+2 |