aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lang/python/src/core.py4
-rwxr-xr-xlang/python/tests/t-idiomatic.py3
2 files changed, 5 insertions, 2 deletions
diff --git a/lang/python/src/core.py b/lang/python/src/core.py
index 81f961d9..c7b312b8 100644
--- a/lang/python/src/core.py
+++ b/lang/python/src/core.py
@@ -1190,7 +1190,7 @@ class Context(GpgmeWrapper):
return self
def __exit__(self, type, value, tb):
- self.__del__()
+ return False
def op_keylist_all(self, *args, **kwargs):
self.op_keylist_start(*args, **kwargs)
@@ -1528,7 +1528,7 @@ class Data(GpgmeWrapper):
return self
def __exit__(self, type, value, tb):
- self.__del__()
+ return False
def _free_datacbs(self):
self._data_cbs = None
diff --git a/lang/python/tests/t-idiomatic.py b/lang/python/tests/t-idiomatic.py
index bc05e6c6..faa41906 100755
--- a/lang/python/tests/t-idiomatic.py
+++ b/lang/python/tests/t-idiomatic.py
@@ -35,6 +35,9 @@ with gpg.Context() as c, gpg.Data() as d:
d.write(b"Halloechen")
leak_c = c
leak_d = d
+
+leak_c.__del__()
+leak_d.__del__()
assert leak_c.wrapped is None
assert leak_d.wrapped is None