diff options
author | Justus Winter <[email protected]> | 2016-06-06 11:11:15 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-06-06 12:16:04 +0000 |
commit | 8196edf9ca5c8f2f02553e7f22d9c79dbd229882 (patch) | |
tree | d3bacbbbe7f72ba90bbe2715b5a87acac6871445 /lang/python/tests/Makefile.am | |
parent | python: Move helper function. (diff) | |
download | gpgme-8196edf9ca5c8f2f02553e7f22d9c79dbd229882.tar.gz gpgme-8196edf9ca5c8f2f02553e7f22d9c79dbd229882.zip |
python: Wrap file-like objects on demand.
* lang/python/gpgme.i (gpgme_data_t): Use new function to create
wrapper objects if necessary, and deallocate them after the function
call.
* lang/python/helpers.c (object_to_gpgme_data_t): New function.
* lang/python/helpers.h (object_to_gpgme_data_t): New prototype.
* lang/python/tests/Makefile.am (pytests): Add new test.
* lang/python/tests/t-idiomatic.py: New file.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'lang/python/tests/Makefile.am')
-rw-r--r-- | lang/python/tests/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/python/tests/Makefile.am b/lang/python/tests/Makefile.am index 12db3a57..b51562cc 100644 --- a/lang/python/tests/Makefile.am +++ b/lang/python/tests/Makefile.am @@ -46,7 +46,8 @@ py_tests = t-wrapper.py \ t-edit.py \ t-wait.py \ t-encrypt-large.py \ - t-file-name.py + t-file-name.py \ + t-idiomatic.py TESTS = $(top_srcdir)/tests/gpg/initial.test \ $(py_tests) \ |