diff options
author | Ben McGinnes <[email protected]> | 2018-08-28 17:42:46 +0000 |
---|---|---|
committer | Ben McGinnes <[email protected]> | 2018-08-28 17:42:46 +0000 |
commit | a8a983c5bc0f0deeeebda455ad73309fff48b61f (patch) | |
tree | bb06d6d047acc758cd2af1fab9f74018ad36effa | |
parent | docs: python howto (diff) | |
download | gpgme-a8a983c5bc0f0deeeebda455ad73309fff48b61f.tar.gz gpgme-a8a983c5bc0f0deeeebda455ad73309fff48b61f.zip |
docs: python bindings
* Added section on why no CFFI.
-rw-r--r-- | lang/python/docs/GPGMEpythonHOWTOen.org | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/lang/python/docs/GPGMEpythonHOWTOen.org b/lang/python/docs/GPGMEpythonHOWTOen.org index b5d6ca84..ffe50348 100644 --- a/lang/python/docs/GPGMEpythonHOWTOen.org +++ b/lang/python/docs/GPGMEpythonHOWTOen.org @@ -398,9 +398,28 @@ ongoing. :CUSTOM_ID: snafu-foad :END: -Obscenis, peream, CFFI_lover, si non uti me pudet improbisque verbis -sed cum tu posito degenerem pudore ostendas mihi coleos patentes cum -cunno mihi mentula est vocanda. +There are many reasons for favouring CFFI and proponents of it are +quite happy to repeat these things as if all it would take to switch +from SWIG to CFFI is repeating that list as if it were a new concept. + +The fact is that there are things which Python's CFFI implementation +cannot handle in the GPGME C code. Beyond that there are features of +SWIG which are simply not available with CFFI at all. SWIG generates +the bindings to Python using the =gpgme.h= file, but that file is not +a single version shipped with each release, it too is generated when +GPGME is compiled. + +CFFI is currently unable to adapt to such a potentially mutable +codebase. If there were some means of applying SWIG's dynamic code +generation to produce CFFI API modes of accessing the GPGME libraries +(or the source source code directly), but such a thing does not exist +yet either and it currently appears that work is needed in at least +one of CFFI's dependencies before any of this can be addressed. + +So if you're a massive fan of CFFI; that's great, but if you want this +project to switch to CFFI then rather than just insisting that it +should, I'd suggest you volunteer to bring CFFI up to the level this +project needs. * Fundamentals |