summaryrefslogtreecommitdiff
path: root/c/test_c.py
Commit message (Expand)AuthorAgeFilesLines
* 32-bit fixArmin Rigo2017-02-201-6/+7
* issue #255: comparing primitive cdatasArmin Rigo2017-02-191-27/+100
* fix testArmin Rigo2017-02-071-1/+1
* Make 'ffi.buffer' be the type of minibuffers returned by cffi, andArmin Rigo2017-02-041-0/+1
* extra testsArmin Rigo2017-01-251-0/+5
* Improve the error message for getattr/setattrArmin Rigo2017-01-251-4/+26
* issue300: return _Bool as Python booleans; related fixesArmin Rigo2017-01-231-3/+48
* Version fixArmin Rigo2017-01-231-1/+1
* bump version number to 1.10.0Armin Rigo2017-01-231-3/+3
* merge strbuf-as-bufferRichard Plangger2017-01-041-4/+8
|\
| * update version number to 1.9.2Armin Rigo2016-12-221-1/+1
| * Detect packed structs. Improve error messages and test them.Armin Rigo2016-12-221-3/+7
* | Fix testArmin Rigo2017-01-031-1/+5
* | readd two lines accidentaly removedRichard Plangger2017-01-031-0/+2
* | do not allow unicode to directly be passed to from_bufferRichard Plangger2016-12-091-2/+2
* | allow from_buffer for buffer and memoryview even when they point to bytes/uni...Richard Plangger2016-12-091-5/+3
* | pypy now can get a raw address from a StringBuffer, modify testRichard Plangger2016-12-091-7/+13
|/
* update to 1.9.1Armin Rigo2016-11-121-1/+1
* Bump version number to 1.9.0Armin Rigo2016-11-021-1/+1
* Fix: the condition "offsetof == sizeof" for being a var-sized arrayArmin Rigo2016-10-291-0/+27
* Decided to fix ffi.sizeof() too. Update the documentation.Armin Rigo2016-10-271-0/+3
* Fix what is hopefully the last remaining issues with calculate_variable_array...Armin Rigo2016-10-251-2/+1
* Tweaks, and add extra tests, which fail for now :-/Armin Rigo2016-10-191-2/+19
* Merged in coronafire/cffi/calculate_variable_array_length (pull request #71)Armin Rigo2016-10-191-4/+9
|\
| * Detect and mark the final variable array in a varsized struct with BS_VARSIZE...calculate_variable_array_lengthAndrew Leech2016-09-141-1/+1
| * Add some initial test assertions to check length details on variable length s...Andrew Leech2016-09-131-3/+8
* | Improve testArmin Rigo2016-10-141-0/+2
* | update to 1.8.4 and add whatsnewArmin Rigo2016-09-201-1/+1
* | Document the new warningArmin Rigo2016-09-151-0/+2
* | bump version number to 1.8.3Armin Rigo2016-09-151-1/+1
* | Warn when implicitly casting between "char *" and a different pointerArmin Rigo2016-09-151-0/+22
|/
* A direct testArmin Rigo2016-09-061-0/+19
* Update and document v1.8.2Armin Rigo2016-09-061-1/+1
* Bump version number to 1.8.1Armin Rigo2016-09-031-1/+1
* Give an error when subtracting two pointers and the division's result isArmin Rigo2016-08-151-0/+13
* Update the version number to 1.8Armin Rigo2016-08-061-1/+1
* The null_byte_after_str branch of PyPy makes ffi.from_buffer(str)Armin Rigo2016-08-021-1/+6
* Support dir(p), where p is a struct or pointer-to-struct, to obtainArmin Rigo2016-06-061-2/+22
* update version number to 1.7Armin Rigo2016-06-051-1/+1
* Add a test for another use caseArmin Rigo2016-06-031-0/+7
* Slice assignment with bytearray as sourceArmin Rigo2016-06-031-4/+6
* From PyPy 5.2, bytearray buffers can fetch a raw pointer, soArmin Rigo2016-06-031-6/+16
* an extra testArmin Rigo2016-05-071-0/+1
* Issue #255: `bool(ffi.cast("primitive", x))` is now True or FalseArmin Rigo2016-05-071-3/+8
* update the version number to 1.6Armin Rigo2016-04-171-1/+1
* Oops. In this case, unpack(p) returns a list of <cdata struct> thatArmin Rigo2016-04-171-1/+2
* There is no reason to restrict ffi.unpack() to primitives.Armin Rigo2016-04-171-1/+23
* Remove again ffi.rawstring(), and implement instead ffi.unpack().Armin Rigo2016-04-161-12/+39
* Python3 compatArmin Rigo2016-04-151-4/+4
* Also accept arrays of int8_t or uint8_t, like ffi.string()Armin Rigo2016-04-151-0/+4