diff options
author | Daniel Kahn Gillmor <[email protected]> | 2016-10-28 20:45:49 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-10-31 14:42:27 +0000 |
commit | 2fac017618a76882605125b05ff1f7393fe99860 (patch) | |
tree | b7eddc17682b6aa91b8c3c723a2fc02f28ac0a6c /lang/python/helpers.h | |
parent | core: New API functions gpgme_set_sender, gpgme_get_sender. (diff) | |
download | gpgme-2fac017618a76882605125b05ff1f7393fe99860.tar.gz gpgme-2fac017618a76882605125b05ff1f7393fe99860.zip |
python: Rename Python module from PyME to gpg.
This follows weeks of discussion on the gnupg-devel mailing list.
Hopefully it will make it easier for people using Python to use GnuPG
in the future.
Signed-off-by: Daniel Kahn Gillmor <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | lang/python/helpers.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lang/python/helpers.h b/lang/python/helpers.h index 67d23b2e..61f538e2 100644 --- a/lang/python/helpers.h +++ b/lang/python/helpers.h @@ -31,13 +31,13 @@ #endif /* Flag specifying whether this is an in-tree build. */ -extern int pyme_in_tree_build; +extern int gpg_in_tree_build; -PyObject *pyme_raise_callback_exception(PyObject *self); +PyObject *gpg_raise_callback_exception(PyObject *self); -PyObject *pyme_set_passphrase_cb(PyObject *self, PyObject *cb); -PyObject *pyme_set_progress_cb(PyObject *self, PyObject *cb); -PyObject *pyme_set_status_cb(PyObject *self, PyObject *cb); +PyObject *gpg_set_passphrase_cb(PyObject *self, PyObject *cb); +PyObject *gpg_set_progress_cb(PyObject *self, PyObject *cb); +PyObject *gpg_set_status_cb(PyObject *self, PyObject *cb); -PyObject *pyme_data_new_from_cbs(PyObject *self, PyObject *pycbs, +PyObject *gpg_data_new_from_cbs(PyObject *self, PyObject *pycbs, gpgme_data_t *r_data); |