12 lines
460 B
Python
12 lines
460 B
Python
from importlib.machinery import SourceFileLoader
|
|
func = SourceFileLoader('func', 'tests/dictionaries/../eosfunc/test.py').load_module()
|
|
for key, value in dict(locals()).items():
|
|
if key != ['SourceFileLoader', 'func']:
|
|
setattr(func, key, value)
|
|
try:
|
|
from tiramisu3 import *
|
|
except:
|
|
from tiramisu import *
|
|
from rougail.tiramisu import ConvertDynOptionDescription
|
|
option_0 = OptionDescription(name='baseoption', doc='baseoption', children=[])
|