Compare commits
No commits in common. "25c5381ae6efd87a04b9e5aba23409359867452f" and "36ab09265a57aa03988129f5790d3ac61965f80e" have entirely different histories.
25c5381ae6
...
36ab09265a
3 changed files with 10 additions and 11 deletions
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "tiramisu"
|
name = "tiramisu"
|
||||||
version = "5.2.0a35"
|
version = "5.2.0a34"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "an options controller tool"
|
description = "an options controller tool"
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "5.2.0a35"
|
__version__ = "5.2.0a34"
|
||||||
|
|
|
||||||
|
|
@ -2253,15 +2253,14 @@ class Config(TiramisuAPI, TiramisuContextOption):
|
||||||
permissives=permissives,
|
permissives=permissives,
|
||||||
)
|
)
|
||||||
super().__init__(config_bag)
|
super().__init__(config_bag)
|
||||||
#
|
|
||||||
# def __del__(self):
|
def __del__(self):
|
||||||
# try:
|
try:
|
||||||
# # FIXME
|
del self._config_bag.context
|
||||||
# # del self._config_bag.context
|
del self._config_bag
|
||||||
# del self._config_bag
|
del self._orig_config_bags
|
||||||
# del self._orig_config_bags
|
except ConfigError:
|
||||||
# except ConfigError:
|
pass
|
||||||
# pass
|
|
||||||
|
|
||||||
|
|
||||||
class MetaConfig(TiramisuAPI, TiramisuContextOption):
|
class MetaConfig(TiramisuAPI, TiramisuContextOption):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue