|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "nuitka/prelude.h" |
|
|
|
#include "nuitka/unfreezing.h" |
|
|
|
#include "__helpers.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PyObject *module_models$unet3d; |
|
PyDictObject *moduledict_models$unet3d; |
|
|
|
|
|
static PyObject *mod_consts[19]; |
|
|
|
static PyObject *module_filename_obj = NULL; |
|
|
|
|
|
static bool constants_created = false; |
|
|
|
|
|
static void createModuleConstants(void) { |
|
if (constants_created == false) { |
|
loadConstantsBlob(&mod_consts[0], UNTRANSLATE("models.unet3d")); |
|
constants_created = true; |
|
} |
|
} |
|
|
|
|
|
#if (_NUITKA_PLUGIN_MULTIPROCESSING_ENABLED || _NUITKA_PLUGIN_TRACEBACK_ENCRYPTION_ENABLED) && 0 |
|
void createMainModuleConstants(void) { |
|
createModuleConstants(); |
|
} |
|
#endif |
|
|
|
|
|
#ifndef __NUITKA_NO_ASSERT__ |
|
void checkModuleConstants_models$unet3d(void) { |
|
|
|
if (constants_created == false) return; |
|
|
|
checkConstantsBlob(&mod_consts[0], "models.unet3d"); |
|
} |
|
#endif |
|
|
|
|
|
static PyCodeObject *codeobj_5e387c7afb8f5b1764470a49d9353be7; |
|
|
|
static void createModuleCodeObjects(void) { |
|
module_filename_obj = MAKE_RELATIVE_PATH(mod_consts[17]); CHECK_OBJECT(module_filename_obj); |
|
codeobj_5e387c7afb8f5b1764470a49d9353be7 = MAKE_CODEOBJECT(module_filename_obj, 1, CO_NOFREE, mod_consts[18], NULL, NULL, 0, 0, 0); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern void _initCompiledCellType(); |
|
extern void _initCompiledGeneratorType(); |
|
extern void _initCompiledFunctionType(); |
|
extern void _initCompiledMethodType(); |
|
extern void _initCompiledFrameType(); |
|
|
|
extern PyTypeObject Nuitka_Loader_Type; |
|
|
|
#ifdef _NUITKA_PLUGIN_DILL_ENABLED |
|
|
|
|
|
extern void registerDillPluginTables(char const *module_name, PyMethodDef *reduce_compiled_function, PyMethodDef *create_compiled_function); |
|
|
|
function_impl_code functable_models$unet3d[] = { |
|
|
|
NULL |
|
}; |
|
|
|
static char const *_reduce_compiled_function_argnames[] = { |
|
"func", |
|
NULL |
|
}; |
|
|
|
static PyObject *_reduce_compiled_function(PyObject *self, PyObject *args, PyObject *kwds) { |
|
PyObject *func; |
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O:reduce_compiled_function", (char **)_reduce_compiled_function_argnames, &func, NULL)) { |
|
return NULL; |
|
} |
|
|
|
if (Nuitka_Function_Check(func) == false) { |
|
SET_CURRENT_EXCEPTION_TYPE0_STR(PyExc_TypeError, "not a compiled function"); |
|
return NULL; |
|
} |
|
|
|
struct Nuitka_FunctionObject *function = (struct Nuitka_FunctionObject *)func; |
|
|
|
function_impl_code *current = functable_models$unet3d; |
|
int offset = 0; |
|
|
|
while (*current != NULL) { |
|
if (*current == function->m_c_code) { |
|
break; |
|
} |
|
|
|
current += 1; |
|
offset += 1; |
|
} |
|
|
|
if (*current == NULL) { |
|
SET_CURRENT_EXCEPTION_TYPE0_STR(PyExc_TypeError, "Cannot find compiled function in module."); |
|
return NULL; |
|
} |
|
|
|
PyObject *code_object_desc = PyTuple_New(6); |
|
PyTuple_SET_ITEM0(code_object_desc, 0, function->m_code_object->co_filename); |
|
PyTuple_SET_ITEM0(code_object_desc, 1, function->m_code_object->co_name); |
|
PyTuple_SET_ITEM(code_object_desc, 2, PyLong_FromLong(function->m_code_object->co_firstlineno)); |
|
PyTuple_SET_ITEM0(code_object_desc, 3, function->m_code_object->co_varnames); |
|
PyTuple_SET_ITEM(code_object_desc, 4, PyLong_FromLong(function->m_code_object->co_argcount)); |
|
PyTuple_SET_ITEM(code_object_desc, 5, PyLong_FromLong(function->m_code_object->co_flags)); |
|
|
|
CHECK_OBJECT_DEEP(code_object_desc); |
|
|
|
PyObject *result = PyTuple_New(4); |
|
PyTuple_SET_ITEM(result, 0, PyLong_FromLong(offset)); |
|
PyTuple_SET_ITEM(result, 1, code_object_desc); |
|
PyTuple_SET_ITEM0(result, 2, function->m_defaults); |
|
PyTuple_SET_ITEM0(result, 3, function->m_doc != NULL ? function->m_doc : Py_None); |
|
|
|
CHECK_OBJECT_DEEP(result); |
|
|
|
return result; |
|
} |
|
|
|
static PyMethodDef _method_def_reduce_compiled_function = {"reduce_compiled_function", (PyCFunction)_reduce_compiled_function, |
|
METH_VARARGS | METH_KEYWORDS, NULL}; |
|
|
|
static char const *_create_compiled_function_argnames[] = { |
|
"func", |
|
"code_object_desc", |
|
"defaults", |
|
"doc", |
|
NULL |
|
}; |
|
|
|
|
|
static PyObject *_create_compiled_function(PyObject *self, PyObject *args, PyObject *kwds) { |
|
CHECK_OBJECT_DEEP(args); |
|
|
|
PyObject *func; |
|
PyObject *code_object_desc; |
|
PyObject *defaults; |
|
PyObject *doc; |
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwds, "OOOO:create_compiled_function", (char **)_create_compiled_function_argnames, &func, &code_object_desc, &defaults, &doc, NULL)) { |
|
return NULL; |
|
} |
|
|
|
int offset = PyLong_AsLong(func); |
|
|
|
if (offset == -1 && ERROR_OCCURRED()) { |
|
return NULL; |
|
} |
|
|
|
if (offset > sizeof(functable_models$unet3d) || offset < 0) { |
|
SET_CURRENT_EXCEPTION_TYPE0_STR(PyExc_TypeError, "Wrong offset for compiled function."); |
|
return NULL; |
|
} |
|
|
|
PyObject *filename = PyTuple_GET_ITEM(code_object_desc, 0); |
|
PyObject *function_name = PyTuple_GET_ITEM(code_object_desc, 1); |
|
PyObject *line = PyTuple_GET_ITEM(code_object_desc, 2); |
|
int line_int = PyLong_AsLong(line); |
|
assert(!ERROR_OCCURRED()); |
|
|
|
PyObject *argnames = PyTuple_GET_ITEM(code_object_desc, 3); |
|
PyObject *arg_count = PyTuple_GET_ITEM(code_object_desc, 4); |
|
int arg_count_int = PyLong_AsLong(arg_count); |
|
assert(!ERROR_OCCURRED()); |
|
PyObject *flags = PyTuple_GET_ITEM(code_object_desc, 5); |
|
int flags_int = PyLong_AsLong(flags); |
|
assert(!ERROR_OCCURRED()); |
|
|
|
PyCodeObject *code_object = MAKE_CODEOBJECT( |
|
filename, |
|
line_int, |
|
flags_int, |
|
function_name, |
|
argnames, |
|
NULL, |
|
arg_count_int, |
|
0, |
|
0 |
|
); |
|
|
|
struct Nuitka_FunctionObject *result = Nuitka_Function_New( |
|
functable_models$unet3d[offset], |
|
code_object->co_name, |
|
#if PYTHON_VERSION >= 0x300 |
|
NULL, |
|
#endif |
|
code_object, |
|
defaults, |
|
#if PYTHON_VERSION >= 0x300 |
|
NULL, |
|
NULL, |
|
#endif |
|
module_models$unet3d, |
|
doc, |
|
NULL, |
|
0 |
|
); |
|
|
|
return (PyObject *)result; |
|
} |
|
|
|
static PyMethodDef _method_def_create_compiled_function = { |
|
"create_compiled_function", |
|
(PyCFunction)_create_compiled_function, |
|
METH_VARARGS | METH_KEYWORDS, NULL |
|
}; |
|
|
|
|
|
#endif |
|
|
|
|
|
PyObject *modulecode_models$unet3d(PyObject *module, struct Nuitka_MetaPathBasedLoaderEntry const *module_entry) { |
|
module_models$unet3d = module; |
|
|
|
#ifdef _NUITKA_MODULE |
|
|
|
|
|
|
|
|
|
|
|
_initBuiltinModule(); |
|
createGlobalConstants(); |
|
|
|
|
|
_initCompiledCellType(); |
|
_initCompiledGeneratorType(); |
|
_initCompiledFunctionType(); |
|
_initCompiledMethodType(); |
|
_initCompiledFrameType(); |
|
|
|
#if PYTHON_VERSION < 0x300 |
|
_initSlotCompare(); |
|
#endif |
|
#if PYTHON_VERSION >= 0x270 |
|
_initSlotIternext(); |
|
#endif |
|
|
|
patchBuiltinModule(); |
|
patchTypeComparison(); |
|
|
|
|
|
#ifdef _NUITKA_TRACE |
|
PRINT_STRING("models.unet3d: Calling setupMetaPathBasedLoader().\n"); |
|
#endif |
|
setupMetaPathBasedLoader(); |
|
|
|
#if PYTHON_VERSION >= 0x300 |
|
patchInspectModule(); |
|
#endif |
|
|
|
#endif |
|
|
|
|
|
#ifdef _NUITKA_TRACE |
|
PRINT_STRING("models.unet3d: Calling createModuleConstants().\n"); |
|
#endif |
|
createModuleConstants(); |
|
|
|
|
|
#ifdef _NUITKA_TRACE |
|
PRINT_STRING("models.unet3d: Calling createModuleCodeObjects().\n"); |
|
#endif |
|
createModuleCodeObjects(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
moduledict_models$unet3d = MODULE_DICT(module_models$unet3d); |
|
|
|
#ifdef _NUITKA_PLUGIN_DILL_ENABLED |
|
registerDillPluginTables(module_entry->name, &_method_def_reduce_compiled_function, &_method_def_create_compiled_function); |
|
#endif |
|
|
|
|
|
UPDATE_STRING_DICT0( |
|
moduledict_models$unet3d, |
|
(Nuitka_StringObject *)const_str_plain___compiled__, |
|
Nuitka_dunder_compiled_value |
|
); |
|
|
|
|
|
{ |
|
#if 0 |
|
UPDATE_STRING_DICT0( |
|
moduledict_models$unet3d, |
|
(Nuitka_StringObject *)const_str_plain___package__, |
|
const_str_empty |
|
); |
|
#elif 1 |
|
PyObject *module_name = GET_STRING_DICT_VALUE(moduledict_models$unet3d, (Nuitka_StringObject *)const_str_plain___name__); |
|
|
|
UPDATE_STRING_DICT0( |
|
moduledict_models$unet3d, |
|
(Nuitka_StringObject *)const_str_plain___package__, |
|
module_name |
|
); |
|
#else |
|
|
|
#if PYTHON_VERSION < 0x300 |
|
PyObject *module_name = GET_STRING_DICT_VALUE(moduledict_models$unet3d, (Nuitka_StringObject *)const_str_plain___name__); |
|
char const *module_name_cstr = PyString_AS_STRING(module_name); |
|
|
|
char const *last_dot = strrchr(module_name_cstr, '.'); |
|
|
|
if (last_dot != NULL) { |
|
UPDATE_STRING_DICT1( |
|
moduledict_models$unet3d, |
|
(Nuitka_StringObject *)const_str_plain___package__, |
|
PyString_FromStringAndSize(module_name_cstr, last_dot - module_name_cstr) |
|
); |
|
} |
|
#else |
|
PyObject *module_name = GET_STRING_DICT_VALUE(moduledict_models$unet3d, (Nuitka_StringObject *)const_str_plain___name__); |
|
Py_ssize_t dot_index = PyUnicode_Find(module_name, const_str_dot, 0, PyUnicode_GetLength(module_name), -1); |
|
|
|
if (dot_index != -1) { |
|
UPDATE_STRING_DICT1( |
|
moduledict_models$unet3d, |
|
(Nuitka_StringObject *)const_str_plain___package__, |
|
PyUnicode_Substring(module_name, 0, dot_index) |
|
); |
|
} |
|
#endif |
|
#endif |
|
} |
|
|
|
CHECK_OBJECT(module_models$unet3d); |
|
|
|
|
|
|
|
|
|
|
|
if (GET_STRING_DICT_VALUE(moduledict_models$unet3d, (Nuitka_StringObject *)const_str_plain___builtins__) == NULL) { |
|
PyObject *value = (PyObject *)builtin_module; |
|
|
|
|
|
#if !defined(_NUITKA_EXE) || !0 |
|
value = PyModule_GetDict(value); |
|
#endif |
|
|
|
UPDATE_STRING_DICT0(moduledict_models$unet3d, (Nuitka_StringObject *)const_str_plain___builtins__, value); |
|
} |
|
|
|
#if PYTHON_VERSION >= 0x300 |
|
UPDATE_STRING_DICT0(moduledict_models$unet3d, (Nuitka_StringObject *)const_str_plain___loader__, (PyObject *)&Nuitka_Loader_Type); |
|
#endif |
|
|
|
#if PYTHON_VERSION >= 0x340 |
|
|
|
|
|
#if 0 |
|
|
|
UPDATE_STRING_DICT0(moduledict_models$unet3d, (Nuitka_StringObject *)const_str_plain___spec__, Py_None); |
|
#else |
|
|
|
{ |
|
PyObject *bootstrap_module = getImportLibBootstrapModule(); |
|
CHECK_OBJECT(bootstrap_module); |
|
|
|
PyObject *_spec_from_module = PyObject_GetAttrString(bootstrap_module, "_spec_from_module"); |
|
CHECK_OBJECT(_spec_from_module); |
|
|
|
PyObject *spec_value = CALL_FUNCTION_WITH_SINGLE_ARG(_spec_from_module, module_models$unet3d); |
|
Py_DECREF(_spec_from_module); |
|
|
|
|
|
|
|
|
|
if (spec_value == NULL) { |
|
PyErr_PrintEx(0); |
|
abort(); |
|
} |
|
|
|
|
|
SET_ATTRIBUTE(spec_value, const_str_plain__initializing, Py_True); |
|
|
|
UPDATE_STRING_DICT1(moduledict_models$unet3d, (Nuitka_StringObject *)const_str_plain___spec__, spec_value); |
|
} |
|
#endif |
|
#endif |
|
|
|
|
|
struct Nuitka_FrameObject *frame_5e387c7afb8f5b1764470a49d9353be7; |
|
NUITKA_MAY_BE_UNUSED char const *type_description_1 = NULL; |
|
PyObject *exception_type = NULL; |
|
PyObject *exception_value = NULL; |
|
PyTracebackObject *exception_tb = NULL; |
|
NUITKA_MAY_BE_UNUSED int exception_lineno = 0; |
|
PyObject *tmp_dictset_value; |
|
PyObject *tmp_dictset_dict; |
|
PyObject *tmp_dictset_key; |
|
int tmp_res; |
|
bool tmp_result; |
|
|
|
|
|
{ |
|
PyObject *tmp_assign_source_1; |
|
tmp_assign_source_1 = Py_None; |
|
UPDATE_STRING_DICT0(moduledict_models$unet3d, (Nuitka_StringObject *)mod_consts[0], tmp_assign_source_1); |
|
} |
|
{ |
|
PyObject *tmp_assign_source_2; |
|
tmp_assign_source_2 = module_filename_obj; |
|
UPDATE_STRING_DICT0(moduledict_models$unet3d, (Nuitka_StringObject *)mod_consts[1], tmp_assign_source_2); |
|
} |
|
|
|
frame_5e387c7afb8f5b1764470a49d9353be7 = MAKE_MODULE_FRAME(codeobj_5e387c7afb8f5b1764470a49d9353be7, module_models$unet3d); |
|
|
|
|
|
|
|
pushFrameStack(frame_5e387c7afb8f5b1764470a49d9353be7); |
|
assert(Py_REFCNT(frame_5e387c7afb8f5b1764470a49d9353be7) == 2); |
|
|
|
|
|
{ |
|
PyObject *tmp_assign_source_3; |
|
PyObject *tmp_list_element_1; |
|
PyObject *tmp_called_name_1; |
|
PyObject *tmp_expression_name_1; |
|
PyObject *tmp_args_element_name_1; |
|
frame_5e387c7afb8f5b1764470a49d9353be7->m_frame.f_lineno = 1; |
|
{ |
|
PyObject *hard_module = IMPORT_HARD_OS(); |
|
tmp_expression_name_1 = LOOKUP_ATTRIBUTE(hard_module, mod_consts[2]); |
|
} |
|
|
|
if (tmp_expression_name_1 == NULL) { |
|
assert(ERROR_OCCURRED()); |
|
|
|
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); |
|
|
|
|
|
exception_lineno = 1; |
|
|
|
goto frame_exception_exit_1; |
|
} |
|
tmp_called_name_1 = LOOKUP_ATTRIBUTE(tmp_expression_name_1, mod_consts[3]); |
|
if (tmp_called_name_1 == NULL) { |
|
assert(ERROR_OCCURRED()); |
|
|
|
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); |
|
|
|
|
|
exception_lineno = 1; |
|
|
|
goto frame_exception_exit_1; |
|
} |
|
tmp_args_element_name_1 = module_filename_obj; |
|
frame_5e387c7afb8f5b1764470a49d9353be7->m_frame.f_lineno = 1; |
|
tmp_list_element_1 = CALL_FUNCTION_WITH_SINGLE_ARG(tmp_called_name_1, tmp_args_element_name_1); |
|
Py_DECREF(tmp_called_name_1); |
|
if (tmp_list_element_1 == NULL) { |
|
assert(ERROR_OCCURRED()); |
|
|
|
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); |
|
|
|
|
|
exception_lineno = 1; |
|
|
|
goto frame_exception_exit_1; |
|
} |
|
tmp_assign_source_3 = PyList_New(3); |
|
{ |
|
PyObject *tmp_called_name_2; |
|
PyObject *tmp_expression_name_2; |
|
PyObject *tmp_args_element_name_2; |
|
PyObject *tmp_called_instance_1; |
|
PyObject *tmp_args_element_name_3; |
|
PyObject *tmp_called_instance_2; |
|
PyList_SET_ITEM(tmp_assign_source_3, 0, tmp_list_element_1); |
|
frame_5e387c7afb8f5b1764470a49d9353be7->m_frame.f_lineno = 1; |
|
{ |
|
PyObject *hard_module = IMPORT_HARD_OS(); |
|
tmp_expression_name_2 = LOOKUP_ATTRIBUTE(hard_module, mod_consts[2]); |
|
} |
|
|
|
if (tmp_expression_name_2 == NULL) { |
|
assert(ERROR_OCCURRED()); |
|
|
|
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); |
|
|
|
|
|
exception_lineno = 1; |
|
|
|
goto list_build_exception_1; |
|
} |
|
tmp_called_name_2 = LOOKUP_ATTRIBUTE(tmp_expression_name_2, mod_consts[4]); |
|
if (tmp_called_name_2 == NULL) { |
|
assert(ERROR_OCCURRED()); |
|
|
|
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); |
|
|
|
|
|
exception_lineno = 1; |
|
|
|
goto list_build_exception_1; |
|
} |
|
frame_5e387c7afb8f5b1764470a49d9353be7->m_frame.f_lineno = 1; |
|
{ |
|
PyObject *hard_module = IMPORT_HARD_OS(); |
|
tmp_called_instance_1 = LOOKUP_ATTRIBUTE(hard_module, mod_consts[5]); |
|
} |
|
|
|
if (tmp_called_instance_1 == NULL) { |
|
assert(ERROR_OCCURRED()); |
|
|
|
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); |
|
Py_DECREF(tmp_called_name_2); |
|
|
|
exception_lineno = 1; |
|
|
|
goto list_build_exception_1; |
|
} |
|
frame_5e387c7afb8f5b1764470a49d9353be7->m_frame.f_lineno = 1; |
|
tmp_args_element_name_2 = CALL_METHOD_WITH_ARGS2( |
|
tmp_called_instance_1, |
|
mod_consts[6], |
|
&PyTuple_GET_ITEM(mod_consts[7], 0) |
|
); |
|
|
|
if (tmp_args_element_name_2 == NULL) { |
|
assert(ERROR_OCCURRED()); |
|
|
|
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); |
|
Py_DECREF(tmp_called_name_2); |
|
|
|
exception_lineno = 1; |
|
|
|
goto list_build_exception_1; |
|
} |
|
tmp_args_element_name_3 = mod_consts[8]; |
|
frame_5e387c7afb8f5b1764470a49d9353be7->m_frame.f_lineno = 1; |
|
{ |
|
PyObject *call_args[] = {tmp_args_element_name_2, tmp_args_element_name_3}; |
|
tmp_list_element_1 = CALL_FUNCTION_WITH_ARGS2(tmp_called_name_2, call_args); |
|
} |
|
|
|
Py_DECREF(tmp_called_name_2); |
|
Py_DECREF(tmp_args_element_name_2); |
|
if (tmp_list_element_1 == NULL) { |
|
assert(ERROR_OCCURRED()); |
|
|
|
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); |
|
|
|
|
|
exception_lineno = 1; |
|
|
|
goto list_build_exception_1; |
|
} |
|
PyList_SET_ITEM(tmp_assign_source_3, 1, tmp_list_element_1); |
|
frame_5e387c7afb8f5b1764470a49d9353be7->m_frame.f_lineno = 1; |
|
{ |
|
PyObject *hard_module = IMPORT_HARD_OS(); |
|
tmp_called_instance_2 = LOOKUP_ATTRIBUTE(hard_module, mod_consts[5]); |
|
} |
|
|
|
if (tmp_called_instance_2 == NULL) { |
|
assert(ERROR_OCCURRED()); |
|
|
|
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); |
|
|
|
|
|
exception_lineno = 1; |
|
|
|
goto list_build_exception_1; |
|
} |
|
frame_5e387c7afb8f5b1764470a49d9353be7->m_frame.f_lineno = 1; |
|
tmp_list_element_1 = CALL_METHOD_WITH_ARGS2( |
|
tmp_called_instance_2, |
|
mod_consts[6], |
|
&PyTuple_GET_ITEM(mod_consts[9], 0) |
|
); |
|
|
|
if (tmp_list_element_1 == NULL) { |
|
assert(ERROR_OCCURRED()); |
|
|
|
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); |
|
|
|
|
|
exception_lineno = 1; |
|
|
|
goto list_build_exception_1; |
|
} |
|
PyList_SET_ITEM(tmp_assign_source_3, 2, tmp_list_element_1); |
|
} |
|
goto list_build_noexception_1; |
|
|
|
list_build_exception_1:; |
|
Py_DECREF(tmp_assign_source_3); |
|
goto frame_exception_exit_1; |
|
|
|
list_build_noexception_1:; |
|
UPDATE_STRING_DICT1(moduledict_models$unet3d, (Nuitka_StringObject *)mod_consts[10], tmp_assign_source_3); |
|
} |
|
{ |
|
PyObject *tmp_expression_name_3; |
|
PyObject *tmp_subscript_name_1; |
|
tmp_dictset_value = Nuitka_Loader_New(module_entry); |
|
tmp_dictset_dict = PySys_GetObject((char *)"path_importer_cache"); |
|
if (tmp_dictset_dict == NULL) { |
|
assert(ERROR_OCCURRED()); |
|
|
|
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); |
|
|
|
|
|
exception_lineno = 1; |
|
|
|
goto frame_exception_exit_1; |
|
} |
|
tmp_expression_name_3 = GET_STRING_DICT_VALUE(moduledict_models$unet3d, (Nuitka_StringObject *)mod_consts[10]); |
|
|
|
if (unlikely(tmp_expression_name_3 == NULL)) { |
|
tmp_expression_name_3 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[10]); |
|
} |
|
|
|
assert(!(tmp_expression_name_3 == NULL)); |
|
tmp_subscript_name_1 = mod_consts[11]; |
|
tmp_dictset_key = LOOKUP_SUBSCRIPT_CONST(tmp_expression_name_3, tmp_subscript_name_1, 0); |
|
if (tmp_dictset_key == NULL) { |
|
assert(ERROR_OCCURRED()); |
|
|
|
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); |
|
|
|
|
|
exception_lineno = 1; |
|
|
|
goto frame_exception_exit_1; |
|
} |
|
tmp_res = PyDict_SetItem(tmp_dictset_dict, tmp_dictset_key, tmp_dictset_value); |
|
Py_DECREF(tmp_dictset_key); |
|
if (tmp_res != 0) { |
|
assert(ERROR_OCCURRED()); |
|
|
|
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); |
|
|
|
|
|
exception_lineno = 1; |
|
|
|
goto frame_exception_exit_1; |
|
} |
|
} |
|
{ |
|
PyObject *tmp_assattr_name_1; |
|
PyObject *tmp_assattr_target_1; |
|
tmp_assattr_name_1 = module_filename_obj; |
|
tmp_assattr_target_1 = GET_STRING_DICT_VALUE(moduledict_models$unet3d, (Nuitka_StringObject *)mod_consts[12]); |
|
|
|
if (unlikely(tmp_assattr_target_1 == NULL)) { |
|
tmp_assattr_target_1 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[12]); |
|
} |
|
|
|
assert(!(tmp_assattr_target_1 == NULL)); |
|
tmp_result = SET_ATTRIBUTE(tmp_assattr_target_1, mod_consts[13], tmp_assattr_name_1); |
|
if (tmp_result == false) { |
|
assert(ERROR_OCCURRED()); |
|
|
|
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); |
|
|
|
|
|
exception_lineno = 1; |
|
|
|
goto frame_exception_exit_1; |
|
} |
|
} |
|
{ |
|
PyObject *tmp_assattr_name_2; |
|
PyObject *tmp_assattr_target_2; |
|
tmp_assattr_name_2 = Py_True; |
|
tmp_assattr_target_2 = GET_STRING_DICT_VALUE(moduledict_models$unet3d, (Nuitka_StringObject *)mod_consts[12]); |
|
|
|
if (unlikely(tmp_assattr_target_2 == NULL)) { |
|
tmp_assattr_target_2 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[12]); |
|
} |
|
|
|
assert(!(tmp_assattr_target_2 == NULL)); |
|
tmp_result = SET_ATTRIBUTE(tmp_assattr_target_2, mod_consts[14], tmp_assattr_name_2); |
|
if (tmp_result == false) { |
|
assert(ERROR_OCCURRED()); |
|
|
|
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); |
|
|
|
|
|
exception_lineno = 1; |
|
|
|
goto frame_exception_exit_1; |
|
} |
|
} |
|
{ |
|
PyObject *tmp_assattr_name_3; |
|
PyObject *tmp_assattr_target_3; |
|
tmp_assattr_name_3 = GET_STRING_DICT_VALUE(moduledict_models$unet3d, (Nuitka_StringObject *)mod_consts[10]); |
|
|
|
if (unlikely(tmp_assattr_name_3 == NULL)) { |
|
tmp_assattr_name_3 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[10]); |
|
} |
|
|
|
if (tmp_assattr_name_3 == NULL) { |
|
assert(ERROR_OCCURRED()); |
|
|
|
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); |
|
|
|
|
|
exception_lineno = 1; |
|
|
|
goto frame_exception_exit_1; |
|
} |
|
tmp_assattr_target_3 = GET_STRING_DICT_VALUE(moduledict_models$unet3d, (Nuitka_StringObject *)mod_consts[12]); |
|
|
|
if (unlikely(tmp_assattr_target_3 == NULL)) { |
|
tmp_assattr_target_3 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[12]); |
|
} |
|
|
|
assert(!(tmp_assattr_target_3 == NULL)); |
|
tmp_result = SET_ATTRIBUTE(tmp_assattr_target_3, mod_consts[15], tmp_assattr_name_3); |
|
if (tmp_result == false) { |
|
assert(ERROR_OCCURRED()); |
|
|
|
FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); |
|
|
|
|
|
exception_lineno = 1; |
|
|
|
goto frame_exception_exit_1; |
|
} |
|
} |
|
|
|
|
|
#if 0 |
|
RESTORE_FRAME_EXCEPTION(frame_5e387c7afb8f5b1764470a49d9353be7); |
|
#endif |
|
popFrameStack(); |
|
|
|
assertFrameObject(frame_5e387c7afb8f5b1764470a49d9353be7); |
|
|
|
goto frame_no_exception_1; |
|
|
|
frame_exception_exit_1:; |
|
#if 0 |
|
RESTORE_FRAME_EXCEPTION(frame_5e387c7afb8f5b1764470a49d9353be7); |
|
#endif |
|
|
|
if (exception_tb == NULL) { |
|
exception_tb = MAKE_TRACEBACK(frame_5e387c7afb8f5b1764470a49d9353be7, exception_lineno); |
|
} else if (exception_tb->tb_frame != &frame_5e387c7afb8f5b1764470a49d9353be7->m_frame) { |
|
exception_tb = ADD_TRACEBACK(exception_tb, frame_5e387c7afb8f5b1764470a49d9353be7, exception_lineno); |
|
} |
|
|
|
|
|
popFrameStack(); |
|
|
|
|
|
goto module_exception_exit; |
|
|
|
frame_no_exception_1:; |
|
{ |
|
PyObject *tmp_assign_source_4; |
|
tmp_assign_source_4 = Py_None; |
|
UPDATE_STRING_DICT0(moduledict_models$unet3d, (Nuitka_StringObject *)mod_consts[16], tmp_assign_source_4); |
|
} |
|
|
|
return module_models$unet3d; |
|
module_exception_exit: |
|
RESTORE_ERROR_OCCURRED(exception_type, exception_value, exception_tb); |
|
return NULL; |
|
} |
|
|
|
|