summaryrefslogtreecommitdiff
path: root/testing/test_parsing.py
Commit message (Expand)AuthorAgeFilesLines
* fix for win32Matti Picus2014-03-021-4/+10
* Fix ffi.dlopen(None): we can't replace it with ffi.dlopen("c") on POSIXArmin Rigo2014-02-281-2/+2
* Fix testArmin Rigo2014-01-141-1/+2
* Add locking. Not really tested, apart from the absence of double locking.thread-safeArmin Rigo2013-11-091-2/+3
* Strip the C line of whitespace in error reporting.Armin Rigo2013-10-241-1/+1
* Two tests from the mailing list, and fixes: bogus "const" detection,Armin Rigo2013-09-141-0/+24
* Python 3 fixes.Armin Rigo2013-02-281-2/+3
* Add all standard Windows types (as per a list from some official-lookingArmin Rigo2013-02-101-0/+32
* - add missing fileArmin Rigo2013-02-101-0/+7
* ImplementationArmin Rigo2013-02-101-0/+7
* Fix issue #44: ffi.new/cast("undefined") raises confusing exception.Armin Rigo2012-12-291-0/+9
* Change the default dlopen() flags from RTLD_LAZY to RTLD_NOW.Armin Rigo2012-09-241-1/+1
* Add ffi.CData and ffi.CType.Armin Rigo2012-09-041-0/+2
* Fix the tests about "typedef enum".Armin Rigo2012-08-231-0/+8
* Give a better error message than pycparser's default oneArmin Rigo2012-08-221-1/+6
* Give an earlier error message when trying to declare a functionArmin Rigo2012-08-221-0/+7
* Change ffi.new() to take a pointer-to-X instead of directly X,Armin Rigo2012-07-161-9/+0
* Implement caching of the types across multiple FFI instances. The typesArmin Rigo2012-07-081-11/+20
* For interactive usage (playing around), add the option ffi.cdef("..",Armin Rigo2012-07-081-1/+10
* Fix(?) the ctypes backend, as far as the tests are concerned.Armin Rigo2012-06-261-0/+5
* Fix the issue. Tests pass but would need some review because it'sArmin Rigo2012-06-171-2/+1
* A non-passing test, a bit annoying: how are we supposed to fill inArmin Rigo2012-06-161-1/+16
* Fix tests for windows.Armin Rigo2012-06-161-2/+5
* Add support for constants, either via "static sometype const x;"Armin Rigo2012-06-151-1/+8
* Rename ffi.rawload() to ffi.dlopen().Armin Rigo2012-06-141-7/+7
* Remove comments.Armin Rigo2012-06-141-0/+17
* Fix test.Armin Rigo2012-06-121-7/+12
* In-progress: verify fully-declared structs.Armin Rigo2012-06-121-1/+1
* Linux-only tweaks until the test passes.Armin Rigo2012-06-081-5/+5
* Fix for the C backend.Armin Rigo2012-06-061-2/+2
* Test and fix.Armin Rigo2012-06-061-1/+10
* Test and fix.Armin Rigo2012-06-061-0/+12
* Rename the package from "ffi" to "cffi".Armin Rigo2012-06-051-1/+1
* pass all the tests, barring test_verifyfijal2012-06-031-2/+2
* Make the tests pass (or skip).Armin Rigo2012-06-011-8/+16
* Fix some of the fake functions.Alex Gaynor2012-05-311-3/+3
* Start writing a C extension module for CPython.Armin Rigo2012-05-271-0/+3
* Shuffle a bit the API between the front-end and the backend.Armin Rigo2012-05-271-3/+3
* Kill backend_base.py.Armin Rigo2012-05-271-7/+9
* Bit fields.Armin Rigo2012-05-221-1/+1
* - typedefs, handled entirely in the front-end.Armin Rigo2012-05-201-0/+34
* Integrate function types with the other types.Armin Rigo2012-05-201-15/+10
* Minor refactoring.Armin Rigo2012-05-201-1/+1
* Fix.Armin Rigo2012-05-201-3/+3
* Fix these tests and add one.Armin Rigo2012-05-201-3/+15
* First rough implementation of pointers.Armin Rigo2012-05-191-2/+2
* change file layoutRonny Pfannschmidt2012-05-171-0/+44