diff options
author | Justus Winter <[email protected]> | 2016-07-28 08:20:20 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-07-28 08:23:32 +0000 |
commit | 3d4dc3f0218234a27103bdb6f93b17c0703b71a2 (patch) | |
tree | 78fe738389557a8e388cc660c6373877662f08f0 /lang/python/helpers.c | |
parent | Fix including nil bytes in keylist output. (diff) | |
download | gpgme-3d4dc3f0218234a27103bdb6f93b17c0703b71a2.tar.gz gpgme-3d4dc3f0218234a27103bdb6f93b17c0703b71a2.zip |
python: Expose less functions to the Python world.
* lang/python/Makefile.am (EXTRA_DIST, COPY_FILES): Add new file.
* lang/python/gpgme.i: Include new file and add comments.
* lang/python/helpers.c: Include new file.
* lang/python/helpers.h: Move functions we do not need to expose...
* lang/python/private.h: ... here.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'lang/python/helpers.c')
-rw-r--r-- | lang/python/helpers.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lang/python/helpers.c b/lang/python/helpers.c index d6cbb883..2b381729 100644 --- a/lang/python/helpers.c +++ b/lang/python/helpers.c @@ -24,7 +24,9 @@ #include <stdlib.h> #include <string.h> #include "Python.h" + #include "helpers.h" +#include "private.h" static PyObject *GPGMEError = NULL; |