summaryrefslogtreecommitdiff
path: root/c/_cffi_backend.c
Commit message (Expand)AuthorAgeFilesLines
...
* Support for from_buffer("type *")Armin Rigo2019-05-261-72/+212
* tp_hash needs the new type Py_hash_t on CPython 3.Armin Rigo2019-04-191-4/+8
* bump version to 1.12.3Armin Rigo2019-04-111-1/+1
* Shut down a warning from recent CPython versions: int() shouldArmin Rigo2019-04-021-1/+4
* Fix (corner case, hard to test)Armin Rigo2019-03-111-2/+6
* Issue #405Armin Rigo2019-03-111-15/+46
* Document issue 391Armin Rigo2019-03-051-2/+2
* oops, return NULL without setting an exceptionArmin Rigo2019-03-051-0/+5
* bump version number to 1.12.2Armin Rigo2019-02-261-1/+1
* bump version number to 1.12.1Armin Rigo2019-02-161-1/+1
* Issue #362Armin Rigo2019-01-281-1/+1
* Oops, fix leak on errorsArmin Rigo2019-01-081-2/+2
* improve error messageArmin Rigo2019-01-081-2/+3
* Implement ffi.from_buffer("foo[]", x)Armin Rigo2019-01-071-47/+84
* ffi.release()Armin Rigo2019-01-051-2/+80
* Fix (very unlikely case though)Armin Rigo2018-12-181-0/+1
* Issue #394Armin Rigo2018-12-161-4/+7
* CPython 2.x: ``ffi.dlopen()`` failed with non-ascii file names on PosixArmin Rigo2018-10-141-1/+9
* Issue 378Armin Rigo2018-09-131-3/+13
* oops, don't do that if 'ct' is a CT_POINTERArmin Rigo2018-08-301-1/+1
* Use memcpy hereArmin Rigo2018-08-301-1/+1
* Issue #379Armin Rigo2018-08-301-19/+37
* Issue #372Armin Rigo2018-08-011-2/+7
* Bump version to 1.12.0 (but not planning a release soon)Armin Rigo2018-07-071-1/+1
* Issue 364Armin Rigo2018-06-161-3/+17
* Py3.7: fix const-correctnessArmin Rigo2018-06-011-2/+2
* Issue #363Armin Rigo2018-04-161-1/+7
* Issue #362Armin Rigo2018-03-151-0/+3
* Ignore multiple dlclose(), like file.close() does in PythonArmin Rigo2018-02-271-4/+5
* Bump to 1.11.5Armin Rigo2018-02-271-1/+1
* silence a gcc warning shown in some (recent?) versions of gccArmin Rigo2018-02-201-8/+10
* More Windows support for ffi.dlopen(), this time the out-of-line versionArmin Rigo2018-02-161-31/+51
* Revert these small changesArmin Rigo2018-02-161-4/+4
* Implement ffi.dlclose() for the in-line caseArmin Rigo2018-02-161-1/+33
* Trying to fix ffi.dlopen() for unicode filenames on WindowsArmin Rigo2018-02-151-12/+43
* Issue #357: fix the out-of-line ABI mode when we see structsArmin Rigo2018-01-311-1/+0
* Bump version number to 1.11.4Armin Rigo2018-01-131-1/+1
* Bump version to 1.11.3Armin Rigo2018-01-101-1/+1
* Bump version number to 1.11.2Armin Rigo2017-10-081-1/+1
* Turn off the UserWarning when implicitly trying to convert betweenArmin Rigo2017-09-301-2/+8
* "char *" => "const char *" until Python 3.7 is happyArmin Rigo2017-09-271-2/+2
* Update version to 1.11.1Armin Rigo2017-09-271-1/+1
* Get rid of deprecated Python C API functionsArmin Rigo2017-09-201-1/+5
* Add an optional 'size' argument to ffi.gc(). So far, it has no effectArmin Rigo2017-08-021-3/+5
* Minor fixArmin Rigo2017-07-311-2/+2
* Apply the patch of issue 321 if __NetBSD__ is defined.Armin Rigo2017-07-081-12/+73
* Write a copy of wchar_helper.h that uses CPython 3.3's newArmin Rigo2017-06-191-1/+5
* Don't use error capture around ffi.gc() finalizer errorsArmin Rigo2017-06-191-3/+6
* Issue #316Armin Rigo2017-06-161-10/+24
* Figured out a memory leak in an error caseArmin Rigo2017-06-041-1/+5