2020-12-22 17:22:56 +01:00
|
|
|
from importlib.machinery import SourceFileLoader
|
|
|
|
func = SourceFileLoader('func', 'tests/dictionaries/../eosfunc/test.py').load_module()
|
2020-11-08 09:43:45 +01:00
|
|
|
for key, value in dict(locals()).items():
|
2020-12-22 17:22:56 +01:00
|
|
|
if key != ['SourceFileLoader', 'func']:
|
2020-11-08 09:43:45 +01:00
|
|
|
setattr(func, key, value)
|
2020-10-04 17:33:30 +02:00
|
|
|
try:
|
|
|
|
from tiramisu3 import *
|
|
|
|
except:
|
|
|
|
from tiramisu import *
|
|
|
|
from rougail.tiramisu import ConvertDynOptionDescription
|
|
|
|
option_0 = OptionDescription(name='baseoption', doc='baseoption', children=[])
|