Compare commits
2 commits
36ab09265a
...
25c5381ae6
| Author | SHA1 | Date | |
|---|---|---|---|
| 25c5381ae6 | |||
| c889dd2902 |
3 changed files with 11 additions and 10 deletions
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "tiramisu"
|
||||
version = "5.2.0a34"
|
||||
version = "5.2.0a35"
|
||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||
readme = "README.md"
|
||||
description = "an options controller tool"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = "5.2.0a34"
|
||||
__version__ = "5.2.0a35"
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue