From c889dd2902b3711951fff000e2e072c3d1012e39 Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Mon, 4 May 2026 15:21:25 +0200 Subject: [PATCH] fix: do not remove informations in context --- tiramisu/api.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/tiramisu/api.py b/tiramisu/api.py index 3c64cc2..3495fb4 100644 --- a/tiramisu/api.py +++ b/tiramisu/api.py @@ -2253,14 +2253,15 @@ class Config(TiramisuAPI, TiramisuContextOption): permissives=permissives, ) super().__init__(config_bag) - - def __del__(self): - try: - del self._config_bag.context - del self._config_bag - del self._orig_config_bags - except ConfigError: - pass +# +# def __del__(self): +# try: +# # FIXME +# # del self._config_bag.context +# del self._config_bag +# del self._orig_config_bags +# except ConfigError: +# pass class MetaConfig(TiramisuAPI, TiramisuContextOption):