summaryrefslogtreecommitdiff
path: root/cffi
Commit message (Expand)AuthorAgeFilesLines
* explanatory commentlibrary-moduleAlex Gaynor2013-02-251-1/+4
* Make the library be a ModuleType subclass so that on PyPy it is optimized for...Alex Gaynor2013-02-241-4/+6
* (lazka, arigo) Change dlopen() to accept either a full path or a libraryArmin Rigo2013-02-221-7/+7
* Moving the determination of the base integer type of an enumArmin Rigo2013-02-162-20/+36
* Remove the debugging printArmin Rigo2013-02-131-1/+0
* hg merge auto-typesArmin Rigo2013-02-121-32/+26
|\
| * Fix enums to use the same rule as gcc: they are actually not alwaysArmin Rigo2013-02-121-1/+17
| * ImplementationArmin Rigo2013-02-081-31/+9
* | Add all standard Windows types (as per a list from some official-lookingArmin Rigo2013-02-103-6/+240
* | - add missing fileArmin Rigo2013-02-102-2/+12
* | ImplementationArmin Rigo2013-02-103-8/+41
|/
* Move the development to 0.6Armin Rigo2013-02-081-2/+2
* Fix when running on pypy without cpyext.Armin Rigo2013-02-071-1/+5
* Python 3 compatArmin Rigo2013-02-071-0/+6
* Issue #52: Add ffi.verify(..modulename='foo'..) with test and documentation.Armin Rigo2013-01-071-14/+19
* Win32: needs this include now.Armin Rigo2013-01-071-0/+1
* Test and fix for issue #51: unlike what is documented, we can't pass aArmin Rigo2013-01-071-11/+34
* issue #50: fix, at least as much as I could find tests for.Armin Rigo2013-01-021-11/+23
* Fix issue #44: ffi.new/cast("undefined") raises confusing exception.Armin Rigo2012-12-291-3/+5
* Fix Python 3.1 compat (callable)Simon Sapin2012-12-271-0/+8
* Bump the version to 0.5.Armin Rigo2012-12-041-2/+2
* Untested (how..?): record dependencies across ffi.include()Armin Rigo2012-12-041-0/+3
* Accept Python strings or random pointers for a "void *" function argument.Armin Rigo2012-11-301-2/+3
* Python 3.Armin Rigo2012-11-303-5/+6
* ffi.include().Armin Rigo2012-11-302-0/+17
* In-progress: tweaks to support the case of the same StructType beingArmin Rigo2012-11-301-11/+15
* Future-proof fix: the key did not include the funcname. By chance,Armin Rigo2012-11-301-2/+3
* We need to take all **kwds and stick them into the hash too.Armin Rigo2012-11-302-1/+35
* Generalize the error reporting: attach the name of the currentArmin Rigo2012-11-293-23/+38
* Improve error reporting for functions that return an opaque type.Armin Rigo2012-11-292-4/+13
* Issue #42: Test and fixArmin Rigo2012-11-282-6/+8
* Upgrade the version number.Armin Rigo2012-11-281-2/+2
* Remove dictionary-order dependencies.Armin Rigo2012-11-282-4/+10
* Fix for Win32.Armin Rigo2012-11-251-1/+6
* Remove the default backend's fallback to ctypes, with comments.Armin Rigo2012-11-231-8/+7
* Move around the _Bool declarationArmin Rigo2012-11-202-0/+2
* 90% of a fix for issue #40.Armin Rigo2012-11-192-1/+19
* Simplification.Armin Rigo2012-11-172-7/+11
* Fix: this assert was not checking anything.Armin Rigo2012-11-171-1/+1
* Remove dead declaration.Armin Rigo2012-11-171-2/+0
* Minor performance improvement for PyPy.Armin Rigo2012-11-172-3/+13
* Fix issue #32: turn types like "size_t" into primitive types from theArmin Rigo2012-11-125-77/+120
* Kill again ffi.inspecttype(), and replace it with read-only attributesArmin Rigo2012-11-111-5/+0
* Issue #22: Add ffi.inspecttype(). See the doc.Armin Rigo2012-11-101-0/+5
* pycparser is not thread-safe. Fix mostly by Sarvi.Armin Rigo2012-11-071-1/+15
* Fix the tests and kill support in the ctypes backend.Armin Rigo2012-10-291-42/+1
* Fix the documentation.Armin Rigo2012-10-291-2/+7
* issue35: meh, Python 2.7 decided to drop complete support for 'buffer'Armin Rigo2012-10-281-1/+1
* Allow '[...]' when declaring a global array, and interpret it like '[]'.Armin Rigo2012-10-281-1/+1
* Fix docstring to work around xemacs syntax highlighting issues.Armin Rigo2012-10-261-1/+1