/* Generated code for Python module 'models.blip2_outputs' * created by Nuitka version 0.6.16 * * This code is in part copyright 2021 Kay Hayen. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "nuitka/prelude.h" #include "nuitka/unfreezing.h" #include "__helpers.h" /* The "module_models$blip2_outputs" is a Python object pointer of module type. * * Note: For full compatibility with CPython, every module variable access * needs to go through it except for cases where the module cannot possibly * have changed in the mean time. */ PyObject *module_models$blip2_outputs; PyDictObject *moduledict_models$blip2_outputs; /* The declarations of module constants used, if any. */ static PyObject *mod_consts[66]; static PyObject *module_filename_obj = NULL; /* Indicator if this modules private constants were created yet. */ static bool constants_created = false; /* Function to create module private constants. */ static void createModuleConstants(void) { if (constants_created == false) { loadConstantsBlob(&mod_consts[0], UNTRANSLATE("models.blip2_outputs")); constants_created = true; } } /* For multiprocessing, we want to be able to initialize the __main__ constants. */ #if (_NUITKA_PLUGIN_MULTIPROCESSING_ENABLED || _NUITKA_PLUGIN_TRACEBACK_ENCRYPTION_ENABLED) && 0 void createMainModuleConstants(void) { createModuleConstants(); } #endif /* Function to verify module private constants for non-corruption. */ #ifndef __NUITKA_NO_ASSERT__ void checkModuleConstants_models$blip2_outputs(void) { // The module may not have been used at all, then ignore this. if (constants_created == false) return; checkConstantsBlob(&mod_consts[0], "models.blip2_outputs"); } #endif // The module code objects. static PyCodeObject *codeobj_d530d5d84b2cdfab0d209aefd1d08cf3; static PyCodeObject *codeobj_32f46a2e9ec8fece152478dc8b391448; static PyCodeObject *codeobj_23aa99519880c8dde09847cac5fec211; static PyCodeObject *codeobj_bc368e4ff586eae6db3f09b46be90226; static PyCodeObject *codeobj_59a4d09150903a1bc08258a145347115; static void createModuleCodeObjects(void) { module_filename_obj = MAKE_RELATIVE_PATH(mod_consts[63]); CHECK_OBJECT(module_filename_obj); codeobj_d530d5d84b2cdfab0d209aefd1d08cf3 = MAKE_CODEOBJECT(module_filename_obj, 1, CO_NOFREE, mod_consts[64], NULL, NULL, 0, 0, 0); codeobj_32f46a2e9ec8fece152478dc8b391448 = MAKE_CODEOBJECT(module_filename_obj, 32, CO_NOFREE, mod_consts[38], mod_consts[65], NULL, 0, 0, 0); codeobj_23aa99519880c8dde09847cac5fec211 = MAKE_CODEOBJECT(module_filename_obj, 73, CO_NOFREE, mod_consts[51], mod_consts[65], NULL, 0, 0, 0); codeobj_bc368e4ff586eae6db3f09b46be90226 = MAKE_CODEOBJECT(module_filename_obj, 89, CO_NOFREE, mod_consts[58], mod_consts[65], NULL, 0, 0, 0); codeobj_59a4d09150903a1bc08258a145347115 = MAKE_CODEOBJECT(module_filename_obj, 20, CO_NOFREE, mod_consts[22], mod_consts[65], NULL, 0, 0, 0); } // The module function declarations. NUITKA_CROSS_MODULE PyObject *impl_models$$$function__1__mro_entries_conversion(PyObject **python_pars); // The module function definitions. 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 // Provide a way to create find a function via its C code and create it back // in another process, useful for multiprocessing extensions like dill extern void registerDillPluginTables(char const *module_name, PyMethodDef *reduce_compiled_function, PyMethodDef *create_compiled_function); function_impl_code functable_models$blip2_outputs[] = { 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$blip2_outputs; 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$blip2_outputs) || 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, // freevars arg_count_int, 0, // TODO: Missing kw_only_count 0 // TODO: Missing pos_only_count ); struct Nuitka_FunctionObject *result = Nuitka_Function_New( functable_models$blip2_outputs[offset], code_object->co_name, #if PYTHON_VERSION >= 0x300 NULL, // TODO: Not transferring qualname yet #endif code_object, defaults, #if PYTHON_VERSION >= 0x300 NULL, // kwdefaults are done on the outside currently NULL, // TODO: Not transferring annotations #endif module_models$blip2_outputs, 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 // Internal entry point for module code. PyObject *modulecode_models$blip2_outputs(PyObject *module, struct Nuitka_MetaPathBasedLoaderEntry const *module_entry) { module_models$blip2_outputs = module; #ifdef _NUITKA_MODULE // In case of a stand alone extension module, need to call initialization // the init here because that's the first and only time we are going to get // called here. // Initialize the constant values used. _initBuiltinModule(); createGlobalConstants(); /* Initialize the compiled types of Nuitka. */ _initCompiledCellType(); _initCompiledGeneratorType(); _initCompiledFunctionType(); _initCompiledMethodType(); _initCompiledFrameType(); #if PYTHON_VERSION < 0x300 _initSlotCompare(); #endif #if PYTHON_VERSION >= 0x270 _initSlotIternext(); #endif patchBuiltinModule(); patchTypeComparison(); // Enable meta path based loader if not already done. #ifdef _NUITKA_TRACE PRINT_STRING("models.blip2_outputs: Calling setupMetaPathBasedLoader().\n"); #endif setupMetaPathBasedLoader(); #if PYTHON_VERSION >= 0x300 patchInspectModule(); #endif #endif /* The constants only used by this module are created now. */ #ifdef _NUITKA_TRACE PRINT_STRING("models.blip2_outputs: Calling createModuleConstants().\n"); #endif createModuleConstants(); /* The code objects used by this module are created now. */ #ifdef _NUITKA_TRACE PRINT_STRING("models.blip2_outputs: Calling createModuleCodeObjects().\n"); #endif createModuleCodeObjects(); // PRINT_STRING("in initmodels$blip2_outputs\n"); // Create the module object first. There are no methods initially, all are // added dynamically in actual code only. Also no "__doc__" is initially // set at this time, as it could not contain NUL characters this way, they // are instead set in early module code. No "self" for modules, we have no // use for it. moduledict_models$blip2_outputs = MODULE_DICT(module_models$blip2_outputs); #ifdef _NUITKA_PLUGIN_DILL_ENABLED registerDillPluginTables(module_entry->name, &_method_def_reduce_compiled_function, &_method_def_create_compiled_function); #endif // Set "__compiled__" to what version information we have. UPDATE_STRING_DICT0( moduledict_models$blip2_outputs, (Nuitka_StringObject *)const_str_plain___compiled__, Nuitka_dunder_compiled_value ); // Update "__package__" value to what it ought to be. { #if 0 UPDATE_STRING_DICT0( moduledict_models$blip2_outputs, (Nuitka_StringObject *)const_str_plain___package__, const_str_empty ); #elif 0 PyObject *module_name = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)const_str_plain___name__); UPDATE_STRING_DICT0( moduledict_models$blip2_outputs, (Nuitka_StringObject *)const_str_plain___package__, module_name ); #else #if PYTHON_VERSION < 0x300 PyObject *module_name = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (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$blip2_outputs, (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$blip2_outputs, (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$blip2_outputs, (Nuitka_StringObject *)const_str_plain___package__, PyUnicode_Substring(module_name, 0, dot_index) ); } #endif #endif } CHECK_OBJECT(module_models$blip2_outputs); // For deep importing of a module we need to have "__builtins__", so we set // it ourselves in the same way than CPython does. Note: This must be done // before the frame object is allocated, or else it may fail. if (GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)const_str_plain___builtins__) == NULL) { PyObject *value = (PyObject *)builtin_module; // Check if main module, not a dict then but the module itself. #if !defined(_NUITKA_EXE) || !0 value = PyModule_GetDict(value); #endif UPDATE_STRING_DICT0(moduledict_models$blip2_outputs, (Nuitka_StringObject *)const_str_plain___builtins__, value); } #if PYTHON_VERSION >= 0x300 UPDATE_STRING_DICT0(moduledict_models$blip2_outputs, (Nuitka_StringObject *)const_str_plain___loader__, (PyObject *)&Nuitka_Loader_Type); #endif #if PYTHON_VERSION >= 0x340 // Set the "__spec__" value #if 0 // Main modules just get "None" as spec. UPDATE_STRING_DICT0(moduledict_models$blip2_outputs, (Nuitka_StringObject *)const_str_plain___spec__, Py_None); #else // Other modules get a "ModuleSpec" from the standard mechanism. { 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$blip2_outputs); Py_DECREF(_spec_from_module); // We can assume this to never fail, or else we are in trouble anyway. // CHECK_OBJECT(spec_value); if (spec_value == NULL) { PyErr_PrintEx(0); abort(); } // Mark the execution in the "__spec__" value. SET_ATTRIBUTE(spec_value, const_str_plain__initializing, Py_True); UPDATE_STRING_DICT1(moduledict_models$blip2_outputs, (Nuitka_StringObject *)const_str_plain___spec__, spec_value); } #endif #endif // Temp variables if any PyObject *outline_0_var___class__ = NULL; PyObject *outline_1_var___class__ = NULL; PyObject *outline_2_var___class__ = NULL; PyObject *outline_3_var___class__ = NULL; PyObject *tmp_class_creation_1__bases = NULL; PyObject *tmp_class_creation_1__bases_orig = NULL; PyObject *tmp_class_creation_1__class_decl_dict = NULL; PyObject *tmp_class_creation_1__metaclass = NULL; PyObject *tmp_class_creation_1__prepared = NULL; PyObject *tmp_class_creation_2__bases = NULL; PyObject *tmp_class_creation_2__bases_orig = NULL; PyObject *tmp_class_creation_2__class_decl_dict = NULL; PyObject *tmp_class_creation_2__metaclass = NULL; PyObject *tmp_class_creation_2__prepared = NULL; PyObject *tmp_class_creation_3__bases = NULL; PyObject *tmp_class_creation_3__bases_orig = NULL; PyObject *tmp_class_creation_3__class_decl_dict = NULL; PyObject *tmp_class_creation_3__metaclass = NULL; PyObject *tmp_class_creation_3__prepared = NULL; PyObject *tmp_class_creation_4__bases = NULL; PyObject *tmp_class_creation_4__bases_orig = NULL; PyObject *tmp_class_creation_4__class_decl_dict = NULL; PyObject *tmp_class_creation_4__metaclass = NULL; PyObject *tmp_class_creation_4__prepared = NULL; PyObject *tmp_import_from_1__module = NULL; struct Nuitka_FrameObject *frame_d530d5d84b2cdfab0d209aefd1d08cf3; NUITKA_MAY_BE_UNUSED char const *type_description_1 = NULL; bool tmp_result; PyObject *exception_type = NULL; PyObject *exception_value = NULL; PyTracebackObject *exception_tb = NULL; NUITKA_MAY_BE_UNUSED int exception_lineno = 0; PyObject *exception_keeper_type_1; PyObject *exception_keeper_value_1; PyTracebackObject *exception_keeper_tb_1; NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1; int tmp_res; PyObject *tmp_dictdel_dict; PyObject *tmp_dictdel_key; PyObject *locals_models$blip2_outputs$$$class__1_BlipSimilarity_20 = NULL; PyObject *tmp_dictset_value; struct Nuitka_FrameObject *frame_59a4d09150903a1bc08258a145347115_2; NUITKA_MAY_BE_UNUSED char const *type_description_2 = NULL; static struct Nuitka_FrameObject *cache_frame_59a4d09150903a1bc08258a145347115_2 = NULL; PyObject *exception_keeper_type_2; PyObject *exception_keeper_value_2; PyTracebackObject *exception_keeper_tb_2; NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_2; PyObject *exception_keeper_type_3; PyObject *exception_keeper_value_3; PyTracebackObject *exception_keeper_tb_3; NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_3; PyObject *exception_keeper_type_4; PyObject *exception_keeper_value_4; PyTracebackObject *exception_keeper_tb_4; NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_4; PyObject *locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32 = NULL; struct Nuitka_FrameObject *frame_32f46a2e9ec8fece152478dc8b391448_3; NUITKA_MAY_BE_UNUSED char const *type_description_3 = NULL; static struct Nuitka_FrameObject *cache_frame_32f46a2e9ec8fece152478dc8b391448_3 = NULL; PyObject *exception_keeper_type_5; PyObject *exception_keeper_value_5; PyTracebackObject *exception_keeper_tb_5; NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_5; PyObject *exception_keeper_type_6; PyObject *exception_keeper_value_6; PyTracebackObject *exception_keeper_tb_6; NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_6; PyObject *exception_keeper_type_7; PyObject *exception_keeper_value_7; PyTracebackObject *exception_keeper_tb_7; NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_7; PyObject *locals_models$blip2_outputs$$$class__3_BlipOutput_73 = NULL; struct Nuitka_FrameObject *frame_23aa99519880c8dde09847cac5fec211_4; NUITKA_MAY_BE_UNUSED char const *type_description_4 = NULL; static struct Nuitka_FrameObject *cache_frame_23aa99519880c8dde09847cac5fec211_4 = NULL; PyObject *exception_keeper_type_8; PyObject *exception_keeper_value_8; PyTracebackObject *exception_keeper_tb_8; NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_8; PyObject *exception_keeper_type_9; PyObject *exception_keeper_value_9; PyTracebackObject *exception_keeper_tb_9; NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_9; PyObject *exception_keeper_type_10; PyObject *exception_keeper_value_10; PyTracebackObject *exception_keeper_tb_10; NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_10; PyObject *locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89 = NULL; struct Nuitka_FrameObject *frame_bc368e4ff586eae6db3f09b46be90226_5; NUITKA_MAY_BE_UNUSED char const *type_description_5 = NULL; static struct Nuitka_FrameObject *cache_frame_bc368e4ff586eae6db3f09b46be90226_5 = NULL; PyObject *exception_keeper_type_11; PyObject *exception_keeper_value_11; PyTracebackObject *exception_keeper_tb_11; NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_11; PyObject *exception_keeper_type_12; PyObject *exception_keeper_value_12; PyTracebackObject *exception_keeper_tb_12; NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_12; PyObject *exception_keeper_type_13; PyObject *exception_keeper_value_13; PyTracebackObject *exception_keeper_tb_13; NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_13; // Module code. { PyObject *tmp_assign_source_1; tmp_assign_source_1 = mod_consts[0]; UPDATE_STRING_DICT0(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[1], tmp_assign_source_1); } { PyObject *tmp_assign_source_2; tmp_assign_source_2 = module_filename_obj; UPDATE_STRING_DICT0(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[2], tmp_assign_source_2); } // Frame without reuse. frame_d530d5d84b2cdfab0d209aefd1d08cf3 = MAKE_MODULE_FRAME(codeobj_d530d5d84b2cdfab0d209aefd1d08cf3, module_models$blip2_outputs); // Push the new frame as the currently active one, and we should be exclusively // owning it. pushFrameStack(frame_d530d5d84b2cdfab0d209aefd1d08cf3); assert(Py_REFCNT(frame_d530d5d84b2cdfab0d209aefd1d08cf3) == 2); // Framed code: { 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$blip2_outputs, (Nuitka_StringObject *)mod_consts[3]); if (unlikely(tmp_assattr_target_1 == NULL)) { tmp_assattr_target_1 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[3]); } assert(!(tmp_assattr_target_1 == NULL)); tmp_result = SET_ATTRIBUTE(tmp_assattr_target_1, mod_consts[4], 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$blip2_outputs, (Nuitka_StringObject *)mod_consts[3]); if (unlikely(tmp_assattr_target_2 == NULL)) { tmp_assattr_target_2 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[3]); } assert(!(tmp_assattr_target_2 == NULL)); tmp_result = SET_ATTRIBUTE(tmp_assattr_target_2, mod_consts[5], 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_assign_source_3; tmp_assign_source_3 = Py_None; UPDATE_STRING_DICT0(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[6], tmp_assign_source_3); } { PyObject *tmp_assign_source_4; PyObject *tmp_import_name_from_1; PyObject *tmp_name_name_1; PyObject *tmp_globals_arg_name_1; PyObject *tmp_locals_arg_name_1; PyObject *tmp_fromlist_name_1; PyObject *tmp_level_name_1; tmp_name_name_1 = mod_consts[7]; tmp_globals_arg_name_1 = (PyObject *)moduledict_models$blip2_outputs; tmp_locals_arg_name_1 = Py_None; tmp_fromlist_name_1 = mod_consts[8]; tmp_level_name_1 = mod_consts[9]; frame_d530d5d84b2cdfab0d209aefd1d08cf3->m_frame.f_lineno = 8; tmp_import_name_from_1 = IMPORT_MODULE5(tmp_name_name_1, tmp_globals_arg_name_1, tmp_locals_arg_name_1, tmp_fromlist_name_1, tmp_level_name_1); if (tmp_import_name_from_1 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 8; goto frame_exception_exit_1; } if (PyModule_Check(tmp_import_name_from_1)) { tmp_assign_source_4 = IMPORT_NAME_OR_MODULE( tmp_import_name_from_1, (PyObject *)moduledict_models$blip2_outputs, mod_consts[10], mod_consts[9] ); } else { tmp_assign_source_4 = IMPORT_NAME(tmp_import_name_from_1, mod_consts[10]); } Py_DECREF(tmp_import_name_from_1); if (tmp_assign_source_4 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 8; goto frame_exception_exit_1; } UPDATE_STRING_DICT1(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[10], tmp_assign_source_4); } { PyObject *tmp_assign_source_5; PyObject *tmp_import_name_from_2; PyObject *tmp_name_name_2; PyObject *tmp_globals_arg_name_2; PyObject *tmp_locals_arg_name_2; PyObject *tmp_fromlist_name_2; PyObject *tmp_level_name_2; tmp_name_name_2 = mod_consts[11]; tmp_globals_arg_name_2 = (PyObject *)moduledict_models$blip2_outputs; tmp_locals_arg_name_2 = Py_None; tmp_fromlist_name_2 = mod_consts[12]; tmp_level_name_2 = mod_consts[9]; frame_d530d5d84b2cdfab0d209aefd1d08cf3->m_frame.f_lineno = 9; tmp_import_name_from_2 = IMPORT_MODULE5(tmp_name_name_2, tmp_globals_arg_name_2, tmp_locals_arg_name_2, tmp_fromlist_name_2, tmp_level_name_2); if (tmp_import_name_from_2 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 9; goto frame_exception_exit_1; } if (PyModule_Check(tmp_import_name_from_2)) { tmp_assign_source_5 = IMPORT_NAME_OR_MODULE( tmp_import_name_from_2, (PyObject *)moduledict_models$blip2_outputs, mod_consts[13], mod_consts[9] ); } else { tmp_assign_source_5 = IMPORT_NAME(tmp_import_name_from_2, mod_consts[13]); } Py_DECREF(tmp_import_name_from_2); if (tmp_assign_source_5 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 9; goto frame_exception_exit_1; } UPDATE_STRING_DICT1(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13], tmp_assign_source_5); } { PyObject *tmp_assign_source_6; PyObject *tmp_name_name_3; PyObject *tmp_globals_arg_name_3; PyObject *tmp_locals_arg_name_3; PyObject *tmp_fromlist_name_3; PyObject *tmp_level_name_3; tmp_name_name_3 = mod_consts[14]; tmp_globals_arg_name_3 = (PyObject *)moduledict_models$blip2_outputs; tmp_locals_arg_name_3 = Py_None; tmp_fromlist_name_3 = Py_None; tmp_level_name_3 = mod_consts[9]; frame_d530d5d84b2cdfab0d209aefd1d08cf3->m_frame.f_lineno = 11; tmp_assign_source_6 = IMPORT_MODULE5(tmp_name_name_3, tmp_globals_arg_name_3, tmp_locals_arg_name_3, tmp_fromlist_name_3, tmp_level_name_3); if (tmp_assign_source_6 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 11; goto frame_exception_exit_1; } UPDATE_STRING_DICT1(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14], tmp_assign_source_6); } { PyObject *tmp_assign_source_7; PyObject *tmp_name_name_4; PyObject *tmp_globals_arg_name_4; PyObject *tmp_locals_arg_name_4; PyObject *tmp_fromlist_name_4; PyObject *tmp_level_name_4; tmp_name_name_4 = mod_consts[15]; tmp_globals_arg_name_4 = (PyObject *)moduledict_models$blip2_outputs; tmp_locals_arg_name_4 = Py_None; tmp_fromlist_name_4 = mod_consts[16]; tmp_level_name_4 = mod_consts[9]; frame_d530d5d84b2cdfab0d209aefd1d08cf3->m_frame.f_lineno = 12; tmp_assign_source_7 = IMPORT_MODULE5(tmp_name_name_4, tmp_globals_arg_name_4, tmp_locals_arg_name_4, tmp_fromlist_name_4, tmp_level_name_4); if (tmp_assign_source_7 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 12; goto frame_exception_exit_1; } assert(tmp_import_from_1__module == NULL); tmp_import_from_1__module = tmp_assign_source_7; } // Tried code: { PyObject *tmp_assign_source_8; PyObject *tmp_import_name_from_3; CHECK_OBJECT(tmp_import_from_1__module); tmp_import_name_from_3 = tmp_import_from_1__module; if (PyModule_Check(tmp_import_name_from_3)) { tmp_assign_source_8 = IMPORT_NAME_OR_MODULE( tmp_import_name_from_3, (PyObject *)moduledict_models$blip2_outputs, mod_consts[17], mod_consts[9] ); } else { tmp_assign_source_8 = IMPORT_NAME(tmp_import_name_from_3, mod_consts[17]); } if (tmp_assign_source_8 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 12; goto try_except_handler_1; } UPDATE_STRING_DICT1(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[17], tmp_assign_source_8); } { PyObject *tmp_assign_source_9; PyObject *tmp_import_name_from_4; CHECK_OBJECT(tmp_import_from_1__module); tmp_import_name_from_4 = tmp_import_from_1__module; if (PyModule_Check(tmp_import_name_from_4)) { tmp_assign_source_9 = IMPORT_NAME_OR_MODULE( tmp_import_name_from_4, (PyObject *)moduledict_models$blip2_outputs, mod_consts[18], mod_consts[9] ); } else { tmp_assign_source_9 = IMPORT_NAME(tmp_import_name_from_4, mod_consts[18]); } if (tmp_assign_source_9 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 12; goto try_except_handler_1; } UPDATE_STRING_DICT1(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[18], tmp_assign_source_9); } { PyObject *tmp_assign_source_10; PyObject *tmp_import_name_from_5; CHECK_OBJECT(tmp_import_from_1__module); tmp_import_name_from_5 = tmp_import_from_1__module; if (PyModule_Check(tmp_import_name_from_5)) { tmp_assign_source_10 = IMPORT_NAME_OR_MODULE( tmp_import_name_from_5, (PyObject *)moduledict_models$blip2_outputs, mod_consts[19], mod_consts[9] ); } else { tmp_assign_source_10 = IMPORT_NAME(tmp_import_name_from_5, mod_consts[19]); } if (tmp_assign_source_10 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 12; goto try_except_handler_1; } UPDATE_STRING_DICT1(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[19], tmp_assign_source_10); } goto try_end_1; // Exception handler code: try_except_handler_1:; exception_keeper_type_1 = exception_type; exception_keeper_value_1 = exception_value; exception_keeper_tb_1 = exception_tb; exception_keeper_lineno_1 = exception_lineno; exception_type = NULL; exception_value = NULL; exception_tb = NULL; exception_lineno = 0; CHECK_OBJECT(tmp_import_from_1__module); Py_DECREF(tmp_import_from_1__module); tmp_import_from_1__module = NULL; // Re-raise. exception_type = exception_keeper_type_1; exception_value = exception_keeper_value_1; exception_tb = exception_keeper_tb_1; exception_lineno = exception_keeper_lineno_1; goto frame_exception_exit_1; // End of try: try_end_1:; CHECK_OBJECT(tmp_import_from_1__module); Py_DECREF(tmp_import_from_1__module); tmp_import_from_1__module = NULL; // Tried code: { PyObject *tmp_assign_source_11; PyObject *tmp_tuple_element_1; tmp_tuple_element_1 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[17]); if (unlikely(tmp_tuple_element_1 == NULL)) { tmp_tuple_element_1 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[17]); } if (tmp_tuple_element_1 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_2; } tmp_assign_source_11 = PyTuple_New(1); PyTuple_SET_ITEM0(tmp_assign_source_11, 0, tmp_tuple_element_1); assert(tmp_class_creation_1__bases_orig == NULL); tmp_class_creation_1__bases_orig = tmp_assign_source_11; } { PyObject *tmp_assign_source_12; PyObject *tmp_dircall_arg1_1; CHECK_OBJECT(tmp_class_creation_1__bases_orig); tmp_dircall_arg1_1 = tmp_class_creation_1__bases_orig; Py_INCREF(tmp_dircall_arg1_1); { PyObject *dir_call_args[] = {tmp_dircall_arg1_1}; tmp_assign_source_12 = impl_models$$$function__1__mro_entries_conversion(dir_call_args); } if (tmp_assign_source_12 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_2; } assert(tmp_class_creation_1__bases == NULL); tmp_class_creation_1__bases = tmp_assign_source_12; } { PyObject *tmp_assign_source_13; tmp_assign_source_13 = PyDict_New(); assert(tmp_class_creation_1__class_decl_dict == NULL); tmp_class_creation_1__class_decl_dict = tmp_assign_source_13; } { PyObject *tmp_assign_source_14; PyObject *tmp_metaclass_name_1; nuitka_bool tmp_condition_result_1; PyObject *tmp_key_name_1; PyObject *tmp_dict_arg_name_1; PyObject *tmp_dict_arg_name_2; PyObject *tmp_key_name_2; nuitka_bool tmp_condition_result_2; int tmp_truth_name_1; PyObject *tmp_type_arg_1; PyObject *tmp_expression_name_1; PyObject *tmp_subscript_name_1; PyObject *tmp_bases_name_1; tmp_key_name_1 = mod_consts[20]; CHECK_OBJECT(tmp_class_creation_1__class_decl_dict); tmp_dict_arg_name_1 = tmp_class_creation_1__class_decl_dict; tmp_res = DICT_HAS_ITEM(tmp_dict_arg_name_1, tmp_key_name_1); assert(!(tmp_res == -1)); tmp_condition_result_1 = (tmp_res != 0) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE; if (tmp_condition_result_1 == NUITKA_BOOL_TRUE) { goto condexpr_true_1; } else { goto condexpr_false_1; } condexpr_true_1:; CHECK_OBJECT(tmp_class_creation_1__class_decl_dict); tmp_dict_arg_name_2 = tmp_class_creation_1__class_decl_dict; tmp_key_name_2 = mod_consts[20]; tmp_metaclass_name_1 = DICT_GET_ITEM_WITH_ERROR(tmp_dict_arg_name_2, tmp_key_name_2); if (tmp_metaclass_name_1 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_2; } goto condexpr_end_1; condexpr_false_1:; CHECK_OBJECT(tmp_class_creation_1__bases); tmp_truth_name_1 = CHECK_IF_TRUE(tmp_class_creation_1__bases); if (tmp_truth_name_1 == -1) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_2; } tmp_condition_result_2 = tmp_truth_name_1 == 0 ? NUITKA_BOOL_FALSE : NUITKA_BOOL_TRUE; if (tmp_condition_result_2 == NUITKA_BOOL_TRUE) { goto condexpr_true_2; } else { goto condexpr_false_2; } condexpr_true_2:; CHECK_OBJECT(tmp_class_creation_1__bases); tmp_expression_name_1 = tmp_class_creation_1__bases; tmp_subscript_name_1 = mod_consts[9]; tmp_type_arg_1 = LOOKUP_SUBSCRIPT_CONST(tmp_expression_name_1, tmp_subscript_name_1, 0); if (tmp_type_arg_1 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_2; } tmp_metaclass_name_1 = BUILTIN_TYPE1(tmp_type_arg_1); Py_DECREF(tmp_type_arg_1); if (tmp_metaclass_name_1 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_2; } goto condexpr_end_2; condexpr_false_2:; tmp_metaclass_name_1 = (PyObject *)&PyType_Type; Py_INCREF(tmp_metaclass_name_1); condexpr_end_2:; condexpr_end_1:; CHECK_OBJECT(tmp_class_creation_1__bases); tmp_bases_name_1 = tmp_class_creation_1__bases; tmp_assign_source_14 = SELECT_METACLASS(tmp_metaclass_name_1, tmp_bases_name_1); Py_DECREF(tmp_metaclass_name_1); if (tmp_assign_source_14 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_2; } assert(tmp_class_creation_1__metaclass == NULL); tmp_class_creation_1__metaclass = tmp_assign_source_14; } { nuitka_bool tmp_condition_result_3; PyObject *tmp_key_name_3; PyObject *tmp_dict_arg_name_3; tmp_key_name_3 = mod_consts[20]; CHECK_OBJECT(tmp_class_creation_1__class_decl_dict); tmp_dict_arg_name_3 = tmp_class_creation_1__class_decl_dict; tmp_res = DICT_HAS_ITEM(tmp_dict_arg_name_3, tmp_key_name_3); assert(!(tmp_res == -1)); tmp_condition_result_3 = (tmp_res != 0) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE; if (tmp_condition_result_3 == NUITKA_BOOL_TRUE) { goto branch_yes_1; } else { goto branch_no_1; } } branch_yes_1:; CHECK_OBJECT(tmp_class_creation_1__class_decl_dict); tmp_dictdel_dict = tmp_class_creation_1__class_decl_dict; tmp_dictdel_key = mod_consts[20]; tmp_result = DICT_REMOVE_ITEM(tmp_dictdel_dict, tmp_dictdel_key); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_2; } branch_no_1:; { nuitka_bool tmp_condition_result_4; PyObject *tmp_expression_name_2; CHECK_OBJECT(tmp_class_creation_1__metaclass); tmp_expression_name_2 = tmp_class_creation_1__metaclass; tmp_result = HAS_ATTR_BOOL(tmp_expression_name_2, mod_consts[21]); tmp_condition_result_4 = (tmp_result) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE; if (tmp_condition_result_4 == NUITKA_BOOL_TRUE) { goto branch_yes_2; } else { goto branch_no_2; } } branch_yes_2:; { PyObject *tmp_assign_source_15; PyObject *tmp_called_name_1; PyObject *tmp_expression_name_3; PyObject *tmp_args_name_1; PyObject *tmp_tuple_element_2; PyObject *tmp_kwargs_name_1; CHECK_OBJECT(tmp_class_creation_1__metaclass); tmp_expression_name_3 = tmp_class_creation_1__metaclass; tmp_called_name_1 = LOOKUP_ATTRIBUTE(tmp_expression_name_3, mod_consts[21]); if (tmp_called_name_1 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_2; } tmp_tuple_element_2 = mod_consts[22]; tmp_args_name_1 = PyTuple_New(2); PyTuple_SET_ITEM0(tmp_args_name_1, 0, tmp_tuple_element_2); CHECK_OBJECT(tmp_class_creation_1__bases); tmp_tuple_element_2 = tmp_class_creation_1__bases; PyTuple_SET_ITEM0(tmp_args_name_1, 1, tmp_tuple_element_2); CHECK_OBJECT(tmp_class_creation_1__class_decl_dict); tmp_kwargs_name_1 = tmp_class_creation_1__class_decl_dict; frame_d530d5d84b2cdfab0d209aefd1d08cf3->m_frame.f_lineno = 20; tmp_assign_source_15 = CALL_FUNCTION(tmp_called_name_1, tmp_args_name_1, tmp_kwargs_name_1); Py_DECREF(tmp_called_name_1); Py_DECREF(tmp_args_name_1); if (tmp_assign_source_15 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_2; } assert(tmp_class_creation_1__prepared == NULL); tmp_class_creation_1__prepared = tmp_assign_source_15; } { nuitka_bool tmp_condition_result_5; PyObject *tmp_operand_name_1; PyObject *tmp_expression_name_4; CHECK_OBJECT(tmp_class_creation_1__prepared); tmp_expression_name_4 = tmp_class_creation_1__prepared; tmp_result = HAS_ATTR_BOOL(tmp_expression_name_4, mod_consts[23]); tmp_operand_name_1 = (tmp_result) ? Py_True : Py_False; tmp_res = CHECK_IF_TRUE(tmp_operand_name_1); if (tmp_res == -1) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_2; } tmp_condition_result_5 = (tmp_res == 0) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE; if (tmp_condition_result_5 == NUITKA_BOOL_TRUE) { goto branch_yes_3; } else { goto branch_no_3; } } branch_yes_3:; { PyObject *tmp_raise_type_1; PyObject *tmp_raise_value_1; PyObject *tmp_left_name_1; PyObject *tmp_right_name_1; PyObject *tmp_tuple_element_3; PyObject *tmp_getattr_target_1; PyObject *tmp_getattr_attr_1; PyObject *tmp_getattr_default_1; tmp_raise_type_1 = PyExc_TypeError; tmp_left_name_1 = mod_consts[24]; CHECK_OBJECT(tmp_class_creation_1__metaclass); tmp_getattr_target_1 = tmp_class_creation_1__metaclass; tmp_getattr_attr_1 = mod_consts[25]; tmp_getattr_default_1 = mod_consts[26]; tmp_tuple_element_3 = BUILTIN_GETATTR(tmp_getattr_target_1, tmp_getattr_attr_1, tmp_getattr_default_1); if (tmp_tuple_element_3 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_2; } tmp_right_name_1 = PyTuple_New(2); { PyObject *tmp_expression_name_5; PyObject *tmp_type_arg_2; PyTuple_SET_ITEM(tmp_right_name_1, 0, tmp_tuple_element_3); CHECK_OBJECT(tmp_class_creation_1__prepared); tmp_type_arg_2 = tmp_class_creation_1__prepared; tmp_expression_name_5 = BUILTIN_TYPE1(tmp_type_arg_2); assert(!(tmp_expression_name_5 == NULL)); tmp_tuple_element_3 = LOOKUP_ATTRIBUTE(tmp_expression_name_5, mod_consts[25]); Py_DECREF(tmp_expression_name_5); if (tmp_tuple_element_3 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto tuple_build_exception_1; } PyTuple_SET_ITEM(tmp_right_name_1, 1, tmp_tuple_element_3); } goto tuple_build_noexception_1; // Exception handling pass through code for tuple_build: tuple_build_exception_1:; Py_DECREF(tmp_right_name_1); goto try_except_handler_2; // Finished with no exception for tuple_build: tuple_build_noexception_1:; tmp_raise_value_1 = BINARY_OPERATION_MOD_OBJECT_UNICODE_TUPLE(tmp_left_name_1, tmp_right_name_1); Py_DECREF(tmp_right_name_1); if (tmp_raise_value_1 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_2; } exception_type = tmp_raise_type_1; Py_INCREF(tmp_raise_type_1); exception_value = tmp_raise_value_1; exception_lineno = 20; RAISE_EXCEPTION_IMPLICIT(&exception_type, &exception_value, &exception_tb); goto try_except_handler_2; } branch_no_3:; goto branch_end_2; branch_no_2:; { PyObject *tmp_assign_source_16; tmp_assign_source_16 = PyDict_New(); assert(tmp_class_creation_1__prepared == NULL); tmp_class_creation_1__prepared = tmp_assign_source_16; } branch_end_2:; { PyObject *tmp_assign_source_17; PyObject *tmp_called_name_2; PyObject *tmp_args_element_name_1; tmp_called_name_2 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[10]); if (unlikely(tmp_called_name_2 == NULL)) { tmp_called_name_2 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[10]); } if (tmp_called_name_2 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 19; goto try_except_handler_2; } { PyObject *tmp_set_locals_1; CHECK_OBJECT(tmp_class_creation_1__prepared); tmp_set_locals_1 = tmp_class_creation_1__prepared; locals_models$blip2_outputs$$$class__1_BlipSimilarity_20 = tmp_set_locals_1; Py_INCREF(tmp_set_locals_1); } // Tried code: // Tried code: tmp_dictset_value = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[25]); if (unlikely(tmp_dictset_value == NULL)) { tmp_dictset_value = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[25]); } assert(!(tmp_dictset_value == NULL)); tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[27], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_4; } tmp_dictset_value = mod_consts[22]; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[28], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_4; } tmp_dictset_value = PyDict_New(); tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[29], tmp_dictset_value); Py_DECREF(tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_4; } if (isFrameUnusable(cache_frame_59a4d09150903a1bc08258a145347115_2)) { Py_XDECREF(cache_frame_59a4d09150903a1bc08258a145347115_2); #if _DEBUG_REFCOUNTS if (cache_frame_59a4d09150903a1bc08258a145347115_2 == NULL) { count_active_frame_cache_instances += 1; } else { count_released_frame_cache_instances += 1; } count_allocated_frame_cache_instances += 1; #endif cache_frame_59a4d09150903a1bc08258a145347115_2 = MAKE_FUNCTION_FRAME(codeobj_59a4d09150903a1bc08258a145347115, module_models$blip2_outputs, sizeof(void *)); #if _DEBUG_REFCOUNTS } else { count_hit_frame_cache_instances += 1; #endif } assert(cache_frame_59a4d09150903a1bc08258a145347115_2->m_type_description == NULL); frame_59a4d09150903a1bc08258a145347115_2 = cache_frame_59a4d09150903a1bc08258a145347115_2; // Push the new frame as the currently active one. pushFrameStack(frame_59a4d09150903a1bc08258a145347115_2); // Mark the frame object as in use, ref count 1 will be up for reuse. assert(Py_REFCNT(frame_59a4d09150903a1bc08258a145347115_2) == 2); // Frame stack // Framed code: tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[30], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 21; type_description_2 = "o"; goto frame_exception_exit_2; } { PyObject *tmp_ass_subvalue_1; PyObject *tmp_expression_name_6; PyObject *tmp_ass_subscribed_1; PyObject *tmp_ass_subscript_1; tmp_expression_name_6 = PyObject_GetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[14]); if (tmp_expression_name_6 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_6 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_6 == NULL)) { tmp_expression_name_6 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_6 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 21; type_description_2 = "o"; goto frame_exception_exit_2; } Py_INCREF(tmp_expression_name_6); } } tmp_ass_subvalue_1 = LOOKUP_ATTRIBUTE(tmp_expression_name_6, mod_consts[31]); Py_DECREF(tmp_expression_name_6); if (tmp_ass_subvalue_1 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 21; type_description_2 = "o"; goto frame_exception_exit_2; } tmp_ass_subscribed_1 = PyObject_GetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[29]); if (unlikely(tmp_ass_subscribed_1 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_1); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 21; type_description_2 = "o"; goto frame_exception_exit_2; } if (tmp_ass_subscribed_1 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_1); exception_lineno = 21; type_description_2 = "o"; goto frame_exception_exit_2; } tmp_ass_subscript_1 = mod_consts[30]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1); Py_DECREF(tmp_ass_subscribed_1); Py_DECREF(tmp_ass_subvalue_1); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 21; type_description_2 = "o"; goto frame_exception_exit_2; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[32], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 22; type_description_2 = "o"; goto frame_exception_exit_2; } { PyObject *tmp_ass_subvalue_2; PyObject *tmp_expression_name_7; PyObject *tmp_ass_subscribed_2; PyObject *tmp_ass_subscript_2; tmp_expression_name_7 = PyObject_GetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[14]); if (tmp_expression_name_7 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_7 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_7 == NULL)) { tmp_expression_name_7 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_7 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 22; type_description_2 = "o"; goto frame_exception_exit_2; } Py_INCREF(tmp_expression_name_7); } } tmp_ass_subvalue_2 = LOOKUP_ATTRIBUTE(tmp_expression_name_7, mod_consts[31]); Py_DECREF(tmp_expression_name_7); if (tmp_ass_subvalue_2 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 22; type_description_2 = "o"; goto frame_exception_exit_2; } tmp_ass_subscribed_2 = PyObject_GetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[29]); if (unlikely(tmp_ass_subscribed_2 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_2); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 22; type_description_2 = "o"; goto frame_exception_exit_2; } if (tmp_ass_subscribed_2 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_2); exception_lineno = 22; type_description_2 = "o"; goto frame_exception_exit_2; } tmp_ass_subscript_2 = mod_consts[32]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_2, tmp_ass_subscript_2, tmp_ass_subvalue_2); Py_DECREF(tmp_ass_subscribed_2); Py_DECREF(tmp_ass_subvalue_2); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 22; type_description_2 = "o"; goto frame_exception_exit_2; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[33], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 24; type_description_2 = "o"; goto frame_exception_exit_2; } { PyObject *tmp_ass_subvalue_3; PyObject *tmp_expression_name_8; PyObject *tmp_subscript_name_2; PyObject *tmp_expression_name_9; PyObject *tmp_ass_subscribed_3; PyObject *tmp_ass_subscript_3; tmp_expression_name_8 = PyObject_GetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[13]); if (tmp_expression_name_8 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_8 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_8 == NULL)) { tmp_expression_name_8 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_8 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 24; type_description_2 = "o"; goto frame_exception_exit_2; } Py_INCREF(tmp_expression_name_8); } } tmp_expression_name_9 = PyObject_GetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[14]); if (tmp_expression_name_9 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_9 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_9 == NULL)) { tmp_expression_name_9 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_9 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_8); exception_lineno = 24; type_description_2 = "o"; goto frame_exception_exit_2; } Py_INCREF(tmp_expression_name_9); } } tmp_subscript_name_2 = LOOKUP_ATTRIBUTE(tmp_expression_name_9, mod_consts[31]); Py_DECREF(tmp_expression_name_9); if (tmp_subscript_name_2 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_8); exception_lineno = 24; type_description_2 = "o"; goto frame_exception_exit_2; } tmp_ass_subvalue_3 = LOOKUP_SUBSCRIPT(tmp_expression_name_8, tmp_subscript_name_2); Py_DECREF(tmp_expression_name_8); Py_DECREF(tmp_subscript_name_2); if (tmp_ass_subvalue_3 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 24; type_description_2 = "o"; goto frame_exception_exit_2; } tmp_ass_subscribed_3 = PyObject_GetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[29]); if (unlikely(tmp_ass_subscribed_3 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_3); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 24; type_description_2 = "o"; goto frame_exception_exit_2; } if (tmp_ass_subscribed_3 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_3); exception_lineno = 24; type_description_2 = "o"; goto frame_exception_exit_2; } tmp_ass_subscript_3 = mod_consts[33]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_3, tmp_ass_subscript_3, tmp_ass_subvalue_3); Py_DECREF(tmp_ass_subscribed_3); Py_DECREF(tmp_ass_subvalue_3); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 24; type_description_2 = "o"; goto frame_exception_exit_2; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[34], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 25; type_description_2 = "o"; goto frame_exception_exit_2; } { PyObject *tmp_ass_subvalue_4; PyObject *tmp_expression_name_10; PyObject *tmp_subscript_name_3; PyObject *tmp_expression_name_11; PyObject *tmp_ass_subscribed_4; PyObject *tmp_ass_subscript_4; tmp_expression_name_10 = PyObject_GetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[13]); if (tmp_expression_name_10 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_10 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_10 == NULL)) { tmp_expression_name_10 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_10 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 25; type_description_2 = "o"; goto frame_exception_exit_2; } Py_INCREF(tmp_expression_name_10); } } tmp_expression_name_11 = PyObject_GetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[14]); if (tmp_expression_name_11 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_11 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_11 == NULL)) { tmp_expression_name_11 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_11 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_10); exception_lineno = 25; type_description_2 = "o"; goto frame_exception_exit_2; } Py_INCREF(tmp_expression_name_11); } } tmp_subscript_name_3 = LOOKUP_ATTRIBUTE(tmp_expression_name_11, mod_consts[31]); Py_DECREF(tmp_expression_name_11); if (tmp_subscript_name_3 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_10); exception_lineno = 25; type_description_2 = "o"; goto frame_exception_exit_2; } tmp_ass_subvalue_4 = LOOKUP_SUBSCRIPT(tmp_expression_name_10, tmp_subscript_name_3); Py_DECREF(tmp_expression_name_10); Py_DECREF(tmp_subscript_name_3); if (tmp_ass_subvalue_4 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 25; type_description_2 = "o"; goto frame_exception_exit_2; } tmp_ass_subscribed_4 = PyObject_GetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[29]); if (unlikely(tmp_ass_subscribed_4 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_4); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 25; type_description_2 = "o"; goto frame_exception_exit_2; } if (tmp_ass_subscribed_4 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_4); exception_lineno = 25; type_description_2 = "o"; goto frame_exception_exit_2; } tmp_ass_subscript_4 = mod_consts[34]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_4, tmp_ass_subscript_4, tmp_ass_subvalue_4); Py_DECREF(tmp_ass_subscribed_4); Py_DECREF(tmp_ass_subvalue_4); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 25; type_description_2 = "o"; goto frame_exception_exit_2; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[35], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 27; type_description_2 = "o"; goto frame_exception_exit_2; } { PyObject *tmp_ass_subvalue_5; PyObject *tmp_expression_name_12; PyObject *tmp_subscript_name_4; PyObject *tmp_expression_name_13; PyObject *tmp_ass_subscribed_5; PyObject *tmp_ass_subscript_5; tmp_expression_name_12 = PyObject_GetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[13]); if (tmp_expression_name_12 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_12 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_12 == NULL)) { tmp_expression_name_12 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_12 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 27; type_description_2 = "o"; goto frame_exception_exit_2; } Py_INCREF(tmp_expression_name_12); } } tmp_expression_name_13 = PyObject_GetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[14]); if (tmp_expression_name_13 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_13 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_13 == NULL)) { tmp_expression_name_13 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_13 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_12); exception_lineno = 27; type_description_2 = "o"; goto frame_exception_exit_2; } Py_INCREF(tmp_expression_name_13); } } tmp_subscript_name_4 = LOOKUP_ATTRIBUTE(tmp_expression_name_13, mod_consts[31]); Py_DECREF(tmp_expression_name_13); if (tmp_subscript_name_4 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_12); exception_lineno = 27; type_description_2 = "o"; goto frame_exception_exit_2; } tmp_ass_subvalue_5 = LOOKUP_SUBSCRIPT(tmp_expression_name_12, tmp_subscript_name_4); Py_DECREF(tmp_expression_name_12); Py_DECREF(tmp_subscript_name_4); if (tmp_ass_subvalue_5 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 27; type_description_2 = "o"; goto frame_exception_exit_2; } tmp_ass_subscribed_5 = PyObject_GetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[29]); if (unlikely(tmp_ass_subscribed_5 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_5); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 27; type_description_2 = "o"; goto frame_exception_exit_2; } if (tmp_ass_subscribed_5 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_5); exception_lineno = 27; type_description_2 = "o"; goto frame_exception_exit_2; } tmp_ass_subscript_5 = mod_consts[35]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_5, tmp_ass_subscript_5, tmp_ass_subvalue_5); Py_DECREF(tmp_ass_subscribed_5); Py_DECREF(tmp_ass_subvalue_5); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 27; type_description_2 = "o"; goto frame_exception_exit_2; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[36], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 28; type_description_2 = "o"; goto frame_exception_exit_2; } { PyObject *tmp_ass_subvalue_6; PyObject *tmp_expression_name_14; PyObject *tmp_subscript_name_5; PyObject *tmp_expression_name_15; PyObject *tmp_ass_subscribed_6; PyObject *tmp_ass_subscript_6; tmp_expression_name_14 = PyObject_GetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[13]); if (tmp_expression_name_14 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_14 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_14 == NULL)) { tmp_expression_name_14 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_14 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 28; type_description_2 = "o"; goto frame_exception_exit_2; } Py_INCREF(tmp_expression_name_14); } } tmp_expression_name_15 = PyObject_GetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[14]); if (tmp_expression_name_15 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_15 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_15 == NULL)) { tmp_expression_name_15 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_15 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_14); exception_lineno = 28; type_description_2 = "o"; goto frame_exception_exit_2; } Py_INCREF(tmp_expression_name_15); } } tmp_subscript_name_5 = LOOKUP_ATTRIBUTE(tmp_expression_name_15, mod_consts[31]); Py_DECREF(tmp_expression_name_15); if (tmp_subscript_name_5 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_14); exception_lineno = 28; type_description_2 = "o"; goto frame_exception_exit_2; } tmp_ass_subvalue_6 = LOOKUP_SUBSCRIPT(tmp_expression_name_14, tmp_subscript_name_5); Py_DECREF(tmp_expression_name_14); Py_DECREF(tmp_subscript_name_5); if (tmp_ass_subvalue_6 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 28; type_description_2 = "o"; goto frame_exception_exit_2; } tmp_ass_subscribed_6 = PyObject_GetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[29]); if (unlikely(tmp_ass_subscribed_6 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_6); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 28; type_description_2 = "o"; goto frame_exception_exit_2; } if (tmp_ass_subscribed_6 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_6); exception_lineno = 28; type_description_2 = "o"; goto frame_exception_exit_2; } tmp_ass_subscript_6 = mod_consts[36]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_6, tmp_ass_subscript_6, tmp_ass_subvalue_6); Py_DECREF(tmp_ass_subscribed_6); Py_DECREF(tmp_ass_subvalue_6); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 28; type_description_2 = "o"; goto frame_exception_exit_2; } } #if 0 RESTORE_FRAME_EXCEPTION(frame_59a4d09150903a1bc08258a145347115_2); #endif // Put the previous frame back on top. popFrameStack(); goto frame_no_exception_1; frame_exception_exit_2:; #if 0 RESTORE_FRAME_EXCEPTION(frame_59a4d09150903a1bc08258a145347115_2); #endif if (exception_tb == NULL) { exception_tb = MAKE_TRACEBACK(frame_59a4d09150903a1bc08258a145347115_2, exception_lineno); } else if (exception_tb->tb_frame != &frame_59a4d09150903a1bc08258a145347115_2->m_frame) { exception_tb = ADD_TRACEBACK(exception_tb, frame_59a4d09150903a1bc08258a145347115_2, exception_lineno); } // Attaches locals to frame if any. Nuitka_Frame_AttachLocals( frame_59a4d09150903a1bc08258a145347115_2, type_description_2, outline_0_var___class__ ); // Release cached frame if used for exception. if (frame_59a4d09150903a1bc08258a145347115_2 == cache_frame_59a4d09150903a1bc08258a145347115_2) { #if _DEBUG_REFCOUNTS count_active_frame_cache_instances -= 1; count_released_frame_cache_instances += 1; #endif Py_DECREF(cache_frame_59a4d09150903a1bc08258a145347115_2); cache_frame_59a4d09150903a1bc08258a145347115_2 = NULL; } assertFrameObject(frame_59a4d09150903a1bc08258a145347115_2); // Put the previous frame back on top. popFrameStack(); // Return the error. goto nested_frame_exit_1; frame_no_exception_1:; goto skip_nested_handling_1; nested_frame_exit_1:; goto try_except_handler_4; skip_nested_handling_1:; { nuitka_bool tmp_condition_result_6; PyObject *tmp_compexpr_left_1; PyObject *tmp_compexpr_right_1; CHECK_OBJECT(tmp_class_creation_1__bases); tmp_compexpr_left_1 = tmp_class_creation_1__bases; CHECK_OBJECT(tmp_class_creation_1__bases_orig); tmp_compexpr_right_1 = tmp_class_creation_1__bases_orig; tmp_condition_result_6 = RICH_COMPARE_NE_NBOOL_OBJECT_TUPLE(tmp_compexpr_left_1, tmp_compexpr_right_1); if (tmp_condition_result_6 == NUITKA_BOOL_EXCEPTION) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_4; } if (tmp_condition_result_6 == NUITKA_BOOL_TRUE) { goto branch_yes_4; } else { goto branch_no_4; } assert(tmp_condition_result_6 != NUITKA_BOOL_UNASSIGNED); } branch_yes_4:; CHECK_OBJECT(tmp_class_creation_1__bases_orig); tmp_dictset_value = tmp_class_creation_1__bases_orig; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20, mod_consts[37], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_4; } branch_no_4:; { PyObject *tmp_assign_source_18; PyObject *tmp_called_name_3; PyObject *tmp_args_name_2; PyObject *tmp_tuple_element_4; PyObject *tmp_kwargs_name_2; CHECK_OBJECT(tmp_class_creation_1__metaclass); tmp_called_name_3 = tmp_class_creation_1__metaclass; tmp_tuple_element_4 = mod_consts[22]; tmp_args_name_2 = PyTuple_New(3); PyTuple_SET_ITEM0(tmp_args_name_2, 0, tmp_tuple_element_4); CHECK_OBJECT(tmp_class_creation_1__bases); tmp_tuple_element_4 = tmp_class_creation_1__bases; PyTuple_SET_ITEM0(tmp_args_name_2, 1, tmp_tuple_element_4); tmp_tuple_element_4 = locals_models$blip2_outputs$$$class__1_BlipSimilarity_20; PyTuple_SET_ITEM0(tmp_args_name_2, 2, tmp_tuple_element_4); CHECK_OBJECT(tmp_class_creation_1__class_decl_dict); tmp_kwargs_name_2 = tmp_class_creation_1__class_decl_dict; frame_d530d5d84b2cdfab0d209aefd1d08cf3->m_frame.f_lineno = 20; tmp_assign_source_18 = CALL_FUNCTION(tmp_called_name_3, tmp_args_name_2, tmp_kwargs_name_2); Py_DECREF(tmp_args_name_2); if (tmp_assign_source_18 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 20; goto try_except_handler_4; } assert(outline_0_var___class__ == NULL); outline_0_var___class__ = tmp_assign_source_18; } CHECK_OBJECT(outline_0_var___class__); tmp_args_element_name_1 = outline_0_var___class__; Py_INCREF(tmp_args_element_name_1); goto try_return_handler_4; NUITKA_CANNOT_GET_HERE("tried codes exits in all cases"); return NULL; // Return handler code: try_return_handler_4:; Py_DECREF(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20); locals_models$blip2_outputs$$$class__1_BlipSimilarity_20 = NULL; goto try_return_handler_3; // Exception handler code: try_except_handler_4:; exception_keeper_type_2 = exception_type; exception_keeper_value_2 = exception_value; exception_keeper_tb_2 = exception_tb; exception_keeper_lineno_2 = exception_lineno; exception_type = NULL; exception_value = NULL; exception_tb = NULL; exception_lineno = 0; Py_DECREF(locals_models$blip2_outputs$$$class__1_BlipSimilarity_20); locals_models$blip2_outputs$$$class__1_BlipSimilarity_20 = NULL; // Re-raise. exception_type = exception_keeper_type_2; exception_value = exception_keeper_value_2; exception_tb = exception_keeper_tb_2; exception_lineno = exception_keeper_lineno_2; goto try_except_handler_3; // End of try: NUITKA_CANNOT_GET_HERE("tried codes exits in all cases"); return NULL; // Return handler code: try_return_handler_3:; CHECK_OBJECT(outline_0_var___class__); Py_DECREF(outline_0_var___class__); outline_0_var___class__ = NULL; goto outline_result_1; // Exception handler code: try_except_handler_3:; exception_keeper_type_3 = exception_type; exception_keeper_value_3 = exception_value; exception_keeper_tb_3 = exception_tb; exception_keeper_lineno_3 = exception_lineno; exception_type = NULL; exception_value = NULL; exception_tb = NULL; exception_lineno = 0; // Re-raise. exception_type = exception_keeper_type_3; exception_value = exception_keeper_value_3; exception_tb = exception_keeper_tb_3; exception_lineno = exception_keeper_lineno_3; goto outline_exception_1; // End of try: NUITKA_CANNOT_GET_HERE("Return statement must have exited already."); return NULL; outline_exception_1:; exception_lineno = 20; goto try_except_handler_2; outline_result_1:; frame_d530d5d84b2cdfab0d209aefd1d08cf3->m_frame.f_lineno = 19; tmp_assign_source_17 = CALL_FUNCTION_WITH_SINGLE_ARG(tmp_called_name_2, tmp_args_element_name_1); Py_DECREF(tmp_args_element_name_1); if (tmp_assign_source_17 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 19; goto try_except_handler_2; } UPDATE_STRING_DICT1(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[22], tmp_assign_source_17); } goto try_end_2; // Exception handler code: try_except_handler_2:; exception_keeper_type_4 = exception_type; exception_keeper_value_4 = exception_value; exception_keeper_tb_4 = exception_tb; exception_keeper_lineno_4 = exception_lineno; exception_type = NULL; exception_value = NULL; exception_tb = NULL; exception_lineno = 0; Py_XDECREF(tmp_class_creation_1__bases_orig); tmp_class_creation_1__bases_orig = NULL; Py_XDECREF(tmp_class_creation_1__bases); tmp_class_creation_1__bases = NULL; Py_XDECREF(tmp_class_creation_1__class_decl_dict); tmp_class_creation_1__class_decl_dict = NULL; Py_XDECREF(tmp_class_creation_1__metaclass); tmp_class_creation_1__metaclass = NULL; Py_XDECREF(tmp_class_creation_1__prepared); tmp_class_creation_1__prepared = NULL; // Re-raise. exception_type = exception_keeper_type_4; exception_value = exception_keeper_value_4; exception_tb = exception_keeper_tb_4; exception_lineno = exception_keeper_lineno_4; goto frame_exception_exit_1; // End of try: try_end_2:; CHECK_OBJECT(tmp_class_creation_1__bases_orig); Py_DECREF(tmp_class_creation_1__bases_orig); tmp_class_creation_1__bases_orig = NULL; Py_XDECREF(tmp_class_creation_1__bases); tmp_class_creation_1__bases = NULL; Py_XDECREF(tmp_class_creation_1__class_decl_dict); tmp_class_creation_1__class_decl_dict = NULL; Py_XDECREF(tmp_class_creation_1__metaclass); tmp_class_creation_1__metaclass = NULL; CHECK_OBJECT(tmp_class_creation_1__prepared); Py_DECREF(tmp_class_creation_1__prepared); tmp_class_creation_1__prepared = NULL; // Tried code: { PyObject *tmp_assign_source_19; PyObject *tmp_tuple_element_5; tmp_tuple_element_5 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[17]); if (unlikely(tmp_tuple_element_5 == NULL)) { tmp_tuple_element_5 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[17]); } if (tmp_tuple_element_5 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_5; } tmp_assign_source_19 = PyTuple_New(1); PyTuple_SET_ITEM0(tmp_assign_source_19, 0, tmp_tuple_element_5); assert(tmp_class_creation_2__bases_orig == NULL); tmp_class_creation_2__bases_orig = tmp_assign_source_19; } { PyObject *tmp_assign_source_20; PyObject *tmp_dircall_arg1_2; CHECK_OBJECT(tmp_class_creation_2__bases_orig); tmp_dircall_arg1_2 = tmp_class_creation_2__bases_orig; Py_INCREF(tmp_dircall_arg1_2); { PyObject *dir_call_args[] = {tmp_dircall_arg1_2}; tmp_assign_source_20 = impl_models$$$function__1__mro_entries_conversion(dir_call_args); } if (tmp_assign_source_20 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_5; } assert(tmp_class_creation_2__bases == NULL); tmp_class_creation_2__bases = tmp_assign_source_20; } { PyObject *tmp_assign_source_21; tmp_assign_source_21 = PyDict_New(); assert(tmp_class_creation_2__class_decl_dict == NULL); tmp_class_creation_2__class_decl_dict = tmp_assign_source_21; } { PyObject *tmp_assign_source_22; PyObject *tmp_metaclass_name_2; nuitka_bool tmp_condition_result_7; PyObject *tmp_key_name_4; PyObject *tmp_dict_arg_name_4; PyObject *tmp_dict_arg_name_5; PyObject *tmp_key_name_5; nuitka_bool tmp_condition_result_8; int tmp_truth_name_2; PyObject *tmp_type_arg_3; PyObject *tmp_expression_name_16; PyObject *tmp_subscript_name_6; PyObject *tmp_bases_name_2; tmp_key_name_4 = mod_consts[20]; CHECK_OBJECT(tmp_class_creation_2__class_decl_dict); tmp_dict_arg_name_4 = tmp_class_creation_2__class_decl_dict; tmp_res = DICT_HAS_ITEM(tmp_dict_arg_name_4, tmp_key_name_4); assert(!(tmp_res == -1)); tmp_condition_result_7 = (tmp_res != 0) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE; if (tmp_condition_result_7 == NUITKA_BOOL_TRUE) { goto condexpr_true_3; } else { goto condexpr_false_3; } condexpr_true_3:; CHECK_OBJECT(tmp_class_creation_2__class_decl_dict); tmp_dict_arg_name_5 = tmp_class_creation_2__class_decl_dict; tmp_key_name_5 = mod_consts[20]; tmp_metaclass_name_2 = DICT_GET_ITEM_WITH_ERROR(tmp_dict_arg_name_5, tmp_key_name_5); if (tmp_metaclass_name_2 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_5; } goto condexpr_end_3; condexpr_false_3:; CHECK_OBJECT(tmp_class_creation_2__bases); tmp_truth_name_2 = CHECK_IF_TRUE(tmp_class_creation_2__bases); if (tmp_truth_name_2 == -1) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_5; } tmp_condition_result_8 = tmp_truth_name_2 == 0 ? NUITKA_BOOL_FALSE : NUITKA_BOOL_TRUE; if (tmp_condition_result_8 == NUITKA_BOOL_TRUE) { goto condexpr_true_4; } else { goto condexpr_false_4; } condexpr_true_4:; CHECK_OBJECT(tmp_class_creation_2__bases); tmp_expression_name_16 = tmp_class_creation_2__bases; tmp_subscript_name_6 = mod_consts[9]; tmp_type_arg_3 = LOOKUP_SUBSCRIPT_CONST(tmp_expression_name_16, tmp_subscript_name_6, 0); if (tmp_type_arg_3 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_5; } tmp_metaclass_name_2 = BUILTIN_TYPE1(tmp_type_arg_3); Py_DECREF(tmp_type_arg_3); if (tmp_metaclass_name_2 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_5; } goto condexpr_end_4; condexpr_false_4:; tmp_metaclass_name_2 = (PyObject *)&PyType_Type; Py_INCREF(tmp_metaclass_name_2); condexpr_end_4:; condexpr_end_3:; CHECK_OBJECT(tmp_class_creation_2__bases); tmp_bases_name_2 = tmp_class_creation_2__bases; tmp_assign_source_22 = SELECT_METACLASS(tmp_metaclass_name_2, tmp_bases_name_2); Py_DECREF(tmp_metaclass_name_2); if (tmp_assign_source_22 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_5; } assert(tmp_class_creation_2__metaclass == NULL); tmp_class_creation_2__metaclass = tmp_assign_source_22; } { nuitka_bool tmp_condition_result_9; PyObject *tmp_key_name_6; PyObject *tmp_dict_arg_name_6; tmp_key_name_6 = mod_consts[20]; CHECK_OBJECT(tmp_class_creation_2__class_decl_dict); tmp_dict_arg_name_6 = tmp_class_creation_2__class_decl_dict; tmp_res = DICT_HAS_ITEM(tmp_dict_arg_name_6, tmp_key_name_6); assert(!(tmp_res == -1)); tmp_condition_result_9 = (tmp_res != 0) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE; if (tmp_condition_result_9 == NUITKA_BOOL_TRUE) { goto branch_yes_5; } else { goto branch_no_5; } } branch_yes_5:; CHECK_OBJECT(tmp_class_creation_2__class_decl_dict); tmp_dictdel_dict = tmp_class_creation_2__class_decl_dict; tmp_dictdel_key = mod_consts[20]; tmp_result = DICT_REMOVE_ITEM(tmp_dictdel_dict, tmp_dictdel_key); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_5; } branch_no_5:; { nuitka_bool tmp_condition_result_10; PyObject *tmp_expression_name_17; CHECK_OBJECT(tmp_class_creation_2__metaclass); tmp_expression_name_17 = tmp_class_creation_2__metaclass; tmp_result = HAS_ATTR_BOOL(tmp_expression_name_17, mod_consts[21]); tmp_condition_result_10 = (tmp_result) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE; if (tmp_condition_result_10 == NUITKA_BOOL_TRUE) { goto branch_yes_6; } else { goto branch_no_6; } } branch_yes_6:; { PyObject *tmp_assign_source_23; PyObject *tmp_called_name_4; PyObject *tmp_expression_name_18; PyObject *tmp_args_name_3; PyObject *tmp_tuple_element_6; PyObject *tmp_kwargs_name_3; CHECK_OBJECT(tmp_class_creation_2__metaclass); tmp_expression_name_18 = tmp_class_creation_2__metaclass; tmp_called_name_4 = LOOKUP_ATTRIBUTE(tmp_expression_name_18, mod_consts[21]); if (tmp_called_name_4 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_5; } tmp_tuple_element_6 = mod_consts[38]; tmp_args_name_3 = PyTuple_New(2); PyTuple_SET_ITEM0(tmp_args_name_3, 0, tmp_tuple_element_6); CHECK_OBJECT(tmp_class_creation_2__bases); tmp_tuple_element_6 = tmp_class_creation_2__bases; PyTuple_SET_ITEM0(tmp_args_name_3, 1, tmp_tuple_element_6); CHECK_OBJECT(tmp_class_creation_2__class_decl_dict); tmp_kwargs_name_3 = tmp_class_creation_2__class_decl_dict; frame_d530d5d84b2cdfab0d209aefd1d08cf3->m_frame.f_lineno = 32; tmp_assign_source_23 = CALL_FUNCTION(tmp_called_name_4, tmp_args_name_3, tmp_kwargs_name_3); Py_DECREF(tmp_called_name_4); Py_DECREF(tmp_args_name_3); if (tmp_assign_source_23 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_5; } assert(tmp_class_creation_2__prepared == NULL); tmp_class_creation_2__prepared = tmp_assign_source_23; } { nuitka_bool tmp_condition_result_11; PyObject *tmp_operand_name_2; PyObject *tmp_expression_name_19; CHECK_OBJECT(tmp_class_creation_2__prepared); tmp_expression_name_19 = tmp_class_creation_2__prepared; tmp_result = HAS_ATTR_BOOL(tmp_expression_name_19, mod_consts[23]); tmp_operand_name_2 = (tmp_result) ? Py_True : Py_False; tmp_res = CHECK_IF_TRUE(tmp_operand_name_2); if (tmp_res == -1) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_5; } tmp_condition_result_11 = (tmp_res == 0) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE; if (tmp_condition_result_11 == NUITKA_BOOL_TRUE) { goto branch_yes_7; } else { goto branch_no_7; } } branch_yes_7:; { PyObject *tmp_raise_type_2; PyObject *tmp_raise_value_2; PyObject *tmp_left_name_2; PyObject *tmp_right_name_2; PyObject *tmp_tuple_element_7; PyObject *tmp_getattr_target_2; PyObject *tmp_getattr_attr_2; PyObject *tmp_getattr_default_2; tmp_raise_type_2 = PyExc_TypeError; tmp_left_name_2 = mod_consts[24]; CHECK_OBJECT(tmp_class_creation_2__metaclass); tmp_getattr_target_2 = tmp_class_creation_2__metaclass; tmp_getattr_attr_2 = mod_consts[25]; tmp_getattr_default_2 = mod_consts[26]; tmp_tuple_element_7 = BUILTIN_GETATTR(tmp_getattr_target_2, tmp_getattr_attr_2, tmp_getattr_default_2); if (tmp_tuple_element_7 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_5; } tmp_right_name_2 = PyTuple_New(2); { PyObject *tmp_expression_name_20; PyObject *tmp_type_arg_4; PyTuple_SET_ITEM(tmp_right_name_2, 0, tmp_tuple_element_7); CHECK_OBJECT(tmp_class_creation_2__prepared); tmp_type_arg_4 = tmp_class_creation_2__prepared; tmp_expression_name_20 = BUILTIN_TYPE1(tmp_type_arg_4); assert(!(tmp_expression_name_20 == NULL)); tmp_tuple_element_7 = LOOKUP_ATTRIBUTE(tmp_expression_name_20, mod_consts[25]); Py_DECREF(tmp_expression_name_20); if (tmp_tuple_element_7 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto tuple_build_exception_2; } PyTuple_SET_ITEM(tmp_right_name_2, 1, tmp_tuple_element_7); } goto tuple_build_noexception_2; // Exception handling pass through code for tuple_build: tuple_build_exception_2:; Py_DECREF(tmp_right_name_2); goto try_except_handler_5; // Finished with no exception for tuple_build: tuple_build_noexception_2:; tmp_raise_value_2 = BINARY_OPERATION_MOD_OBJECT_UNICODE_TUPLE(tmp_left_name_2, tmp_right_name_2); Py_DECREF(tmp_right_name_2); if (tmp_raise_value_2 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_5; } exception_type = tmp_raise_type_2; Py_INCREF(tmp_raise_type_2); exception_value = tmp_raise_value_2; exception_lineno = 32; RAISE_EXCEPTION_IMPLICIT(&exception_type, &exception_value, &exception_tb); goto try_except_handler_5; } branch_no_7:; goto branch_end_6; branch_no_6:; { PyObject *tmp_assign_source_24; tmp_assign_source_24 = PyDict_New(); assert(tmp_class_creation_2__prepared == NULL); tmp_class_creation_2__prepared = tmp_assign_source_24; } branch_end_6:; { PyObject *tmp_assign_source_25; PyObject *tmp_called_name_5; PyObject *tmp_args_element_name_2; tmp_called_name_5 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[10]); if (unlikely(tmp_called_name_5 == NULL)) { tmp_called_name_5 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[10]); } if (tmp_called_name_5 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 31; goto try_except_handler_5; } { PyObject *tmp_set_locals_2; CHECK_OBJECT(tmp_class_creation_2__prepared); tmp_set_locals_2 = tmp_class_creation_2__prepared; locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32 = tmp_set_locals_2; Py_INCREF(tmp_set_locals_2); } // Tried code: // Tried code: tmp_dictset_value = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[25]); if (unlikely(tmp_dictset_value == NULL)) { tmp_dictset_value = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[25]); } assert(!(tmp_dictset_value == NULL)); tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[27], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_7; } tmp_dictset_value = mod_consts[39]; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[1], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_7; } tmp_dictset_value = mod_consts[38]; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[28], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_7; } tmp_dictset_value = PyDict_New(); tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[29], tmp_dictset_value); Py_DECREF(tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_7; } if (isFrameUnusable(cache_frame_32f46a2e9ec8fece152478dc8b391448_3)) { Py_XDECREF(cache_frame_32f46a2e9ec8fece152478dc8b391448_3); #if _DEBUG_REFCOUNTS if (cache_frame_32f46a2e9ec8fece152478dc8b391448_3 == NULL) { count_active_frame_cache_instances += 1; } else { count_released_frame_cache_instances += 1; } count_allocated_frame_cache_instances += 1; #endif cache_frame_32f46a2e9ec8fece152478dc8b391448_3 = MAKE_FUNCTION_FRAME(codeobj_32f46a2e9ec8fece152478dc8b391448, module_models$blip2_outputs, sizeof(void *)); #if _DEBUG_REFCOUNTS } else { count_hit_frame_cache_instances += 1; #endif } assert(cache_frame_32f46a2e9ec8fece152478dc8b391448_3->m_type_description == NULL); frame_32f46a2e9ec8fece152478dc8b391448_3 = cache_frame_32f46a2e9ec8fece152478dc8b391448_3; // Push the new frame as the currently active one. pushFrameStack(frame_32f46a2e9ec8fece152478dc8b391448_3); // Mark the frame object as in use, ref count 1 will be up for reuse. assert(Py_REFCNT(frame_32f46a2e9ec8fece152478dc8b391448_3) == 2); // Frame stack // Framed code: tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[40], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 54; type_description_2 = "o"; goto frame_exception_exit_3; } { PyObject *tmp_ass_subvalue_7; PyObject *tmp_expression_name_21; PyObject *tmp_ass_subscribed_7; PyObject *tmp_ass_subscript_7; tmp_expression_name_21 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[14]); if (tmp_expression_name_21 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_21 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_21 == NULL)) { tmp_expression_name_21 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_21 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 54; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_expression_name_21); } } tmp_ass_subvalue_7 = LOOKUP_ATTRIBUTE(tmp_expression_name_21, mod_consts[31]); Py_DECREF(tmp_expression_name_21); if (tmp_ass_subvalue_7 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 54; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscribed_7 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[29]); if (unlikely(tmp_ass_subscribed_7 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_7); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 54; type_description_2 = "o"; goto frame_exception_exit_3; } if (tmp_ass_subscribed_7 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_7); exception_lineno = 54; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscript_7 = mod_consts[40]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_7, tmp_ass_subscript_7, tmp_ass_subvalue_7); Py_DECREF(tmp_ass_subscribed_7); Py_DECREF(tmp_ass_subvalue_7); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 54; type_description_2 = "o"; goto frame_exception_exit_3; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[41], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 55; type_description_2 = "o"; goto frame_exception_exit_3; } { PyObject *tmp_ass_subvalue_8; PyObject *tmp_expression_name_22; PyObject *tmp_subscript_name_7; PyObject *tmp_expression_name_23; PyObject *tmp_ass_subscribed_8; PyObject *tmp_ass_subscript_8; tmp_expression_name_22 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[13]); if (tmp_expression_name_22 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_22 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_22 == NULL)) { tmp_expression_name_22 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_22 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 55; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_expression_name_22); } } tmp_expression_name_23 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[14]); if (tmp_expression_name_23 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_23 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_23 == NULL)) { tmp_expression_name_23 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_23 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_22); exception_lineno = 55; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_expression_name_23); } } tmp_subscript_name_7 = LOOKUP_ATTRIBUTE(tmp_expression_name_23, mod_consts[31]); Py_DECREF(tmp_expression_name_23); if (tmp_subscript_name_7 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_22); exception_lineno = 55; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subvalue_8 = LOOKUP_SUBSCRIPT(tmp_expression_name_22, tmp_subscript_name_7); Py_DECREF(tmp_expression_name_22); Py_DECREF(tmp_subscript_name_7); if (tmp_ass_subvalue_8 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 55; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscribed_8 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[29]); if (unlikely(tmp_ass_subscribed_8 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_8); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 55; type_description_2 = "o"; goto frame_exception_exit_3; } if (tmp_ass_subscribed_8 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_8); exception_lineno = 55; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscript_8 = mod_consts[41]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_8, tmp_ass_subscript_8, tmp_ass_subvalue_8); Py_DECREF(tmp_ass_subscribed_8); Py_DECREF(tmp_ass_subvalue_8); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 55; type_description_2 = "o"; goto frame_exception_exit_3; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[42], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 57; type_description_2 = "o"; goto frame_exception_exit_3; } { PyObject *tmp_ass_subvalue_9; PyObject *tmp_expression_name_24; PyObject *tmp_subscript_name_8; PyObject *tmp_expression_name_25; PyObject *tmp_ass_subscribed_9; PyObject *tmp_ass_subscript_9; tmp_expression_name_24 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[13]); if (tmp_expression_name_24 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_24 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_24 == NULL)) { tmp_expression_name_24 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_24 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 57; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_expression_name_24); } } tmp_expression_name_25 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[14]); if (tmp_expression_name_25 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_25 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_25 == NULL)) { tmp_expression_name_25 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_25 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_24); exception_lineno = 57; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_expression_name_25); } } tmp_subscript_name_8 = LOOKUP_ATTRIBUTE(tmp_expression_name_25, mod_consts[31]); Py_DECREF(tmp_expression_name_25); if (tmp_subscript_name_8 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_24); exception_lineno = 57; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subvalue_9 = LOOKUP_SUBSCRIPT(tmp_expression_name_24, tmp_subscript_name_8); Py_DECREF(tmp_expression_name_24); Py_DECREF(tmp_subscript_name_8); if (tmp_ass_subvalue_9 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 57; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscribed_9 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[29]); if (unlikely(tmp_ass_subscribed_9 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_9); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 57; type_description_2 = "o"; goto frame_exception_exit_3; } if (tmp_ass_subscribed_9 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_9); exception_lineno = 57; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscript_9 = mod_consts[42]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_9, tmp_ass_subscript_9, tmp_ass_subvalue_9); Py_DECREF(tmp_ass_subscribed_9); Py_DECREF(tmp_ass_subvalue_9); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 57; type_description_2 = "o"; goto frame_exception_exit_3; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[43], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 58; type_description_2 = "o"; goto frame_exception_exit_3; } { PyObject *tmp_ass_subvalue_10; PyObject *tmp_expression_name_26; PyObject *tmp_subscript_name_9; PyObject *tmp_expression_name_27; PyObject *tmp_ass_subscribed_10; PyObject *tmp_ass_subscript_10; tmp_expression_name_26 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[13]); if (tmp_expression_name_26 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_26 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_26 == NULL)) { tmp_expression_name_26 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_26 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 58; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_expression_name_26); } } tmp_expression_name_27 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[14]); if (tmp_expression_name_27 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_27 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_27 == NULL)) { tmp_expression_name_27 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_27 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_26); exception_lineno = 58; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_expression_name_27); } } tmp_subscript_name_9 = LOOKUP_ATTRIBUTE(tmp_expression_name_27, mod_consts[31]); Py_DECREF(tmp_expression_name_27); if (tmp_subscript_name_9 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_26); exception_lineno = 58; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subvalue_10 = LOOKUP_SUBSCRIPT(tmp_expression_name_26, tmp_subscript_name_9); Py_DECREF(tmp_expression_name_26); Py_DECREF(tmp_subscript_name_9); if (tmp_ass_subvalue_10 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 58; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscribed_10 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[29]); if (unlikely(tmp_ass_subscribed_10 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_10); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 58; type_description_2 = "o"; goto frame_exception_exit_3; } if (tmp_ass_subscribed_10 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_10); exception_lineno = 58; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscript_10 = mod_consts[43]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_10, tmp_ass_subscript_10, tmp_ass_subvalue_10); Py_DECREF(tmp_ass_subscribed_10); Py_DECREF(tmp_ass_subvalue_10); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 58; type_description_2 = "o"; goto frame_exception_exit_3; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[44], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 61; type_description_2 = "o"; goto frame_exception_exit_3; } { PyObject *tmp_ass_subvalue_11; PyObject *tmp_expression_name_28; PyObject *tmp_subscript_name_10; PyObject *tmp_ass_subscribed_11; PyObject *tmp_ass_subscript_11; tmp_expression_name_28 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[13]); if (tmp_expression_name_28 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_28 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_28 == NULL)) { tmp_expression_name_28 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_28 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 61; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_expression_name_28); } } tmp_subscript_name_10 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[18]); if (tmp_subscript_name_10 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_subscript_name_10 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[18]); if (unlikely(tmp_subscript_name_10 == NULL)) { tmp_subscript_name_10 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[18]); } if (tmp_subscript_name_10 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_28); exception_lineno = 61; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_subscript_name_10); } } tmp_ass_subvalue_11 = LOOKUP_SUBSCRIPT(tmp_expression_name_28, tmp_subscript_name_10); Py_DECREF(tmp_expression_name_28); Py_DECREF(tmp_subscript_name_10); if (tmp_ass_subvalue_11 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 61; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscribed_11 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[29]); if (unlikely(tmp_ass_subscribed_11 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_11); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 61; type_description_2 = "o"; goto frame_exception_exit_3; } if (tmp_ass_subscribed_11 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_11); exception_lineno = 61; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscript_11 = mod_consts[44]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_11, tmp_ass_subscript_11, tmp_ass_subvalue_11); Py_DECREF(tmp_ass_subscribed_11); Py_DECREF(tmp_ass_subvalue_11); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 61; type_description_2 = "o"; goto frame_exception_exit_3; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[45], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 62; type_description_2 = "o"; goto frame_exception_exit_3; } { PyObject *tmp_ass_subvalue_12; PyObject *tmp_expression_name_29; PyObject *tmp_subscript_name_11; PyObject *tmp_ass_subscribed_12; PyObject *tmp_ass_subscript_12; tmp_expression_name_29 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[13]); if (tmp_expression_name_29 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_29 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_29 == NULL)) { tmp_expression_name_29 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_29 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 62; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_expression_name_29); } } tmp_subscript_name_11 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[18]); if (tmp_subscript_name_11 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_subscript_name_11 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[18]); if (unlikely(tmp_subscript_name_11 == NULL)) { tmp_subscript_name_11 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[18]); } if (tmp_subscript_name_11 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_29); exception_lineno = 62; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_subscript_name_11); } } tmp_ass_subvalue_12 = LOOKUP_SUBSCRIPT(tmp_expression_name_29, tmp_subscript_name_11); Py_DECREF(tmp_expression_name_29); Py_DECREF(tmp_subscript_name_11); if (tmp_ass_subvalue_12 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 62; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscribed_12 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[29]); if (unlikely(tmp_ass_subscribed_12 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_12); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 62; type_description_2 = "o"; goto frame_exception_exit_3; } if (tmp_ass_subscribed_12 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_12); exception_lineno = 62; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscript_12 = mod_consts[45]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_12, tmp_ass_subscript_12, tmp_ass_subvalue_12); Py_DECREF(tmp_ass_subscribed_12); Py_DECREF(tmp_ass_subvalue_12); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 62; type_description_2 = "o"; goto frame_exception_exit_3; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[46], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 64; type_description_2 = "o"; goto frame_exception_exit_3; } { PyObject *tmp_ass_subvalue_13; PyObject *tmp_expression_name_30; PyObject *tmp_subscript_name_12; PyObject *tmp_expression_name_31; PyObject *tmp_ass_subscribed_13; PyObject *tmp_ass_subscript_13; tmp_expression_name_30 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[13]); if (tmp_expression_name_30 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_30 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_30 == NULL)) { tmp_expression_name_30 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_30 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 64; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_expression_name_30); } } tmp_expression_name_31 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[14]); if (tmp_expression_name_31 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_31 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_31 == NULL)) { tmp_expression_name_31 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_31 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_30); exception_lineno = 64; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_expression_name_31); } } tmp_subscript_name_12 = LOOKUP_ATTRIBUTE(tmp_expression_name_31, mod_consts[31]); Py_DECREF(tmp_expression_name_31); if (tmp_subscript_name_12 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_30); exception_lineno = 64; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subvalue_13 = LOOKUP_SUBSCRIPT(tmp_expression_name_30, tmp_subscript_name_12); Py_DECREF(tmp_expression_name_30); Py_DECREF(tmp_subscript_name_12); if (tmp_ass_subvalue_13 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 64; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscribed_13 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[29]); if (unlikely(tmp_ass_subscribed_13 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_13); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 64; type_description_2 = "o"; goto frame_exception_exit_3; } if (tmp_ass_subscribed_13 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_13); exception_lineno = 64; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscript_13 = mod_consts[46]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_13, tmp_ass_subscript_13, tmp_ass_subvalue_13); Py_DECREF(tmp_ass_subscribed_13); Py_DECREF(tmp_ass_subvalue_13); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 64; type_description_2 = "o"; goto frame_exception_exit_3; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[47], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 65; type_description_2 = "o"; goto frame_exception_exit_3; } { PyObject *tmp_ass_subvalue_14; PyObject *tmp_expression_name_32; PyObject *tmp_subscript_name_13; PyObject *tmp_expression_name_33; PyObject *tmp_ass_subscribed_14; PyObject *tmp_ass_subscript_14; tmp_expression_name_32 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[13]); if (tmp_expression_name_32 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_32 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_32 == NULL)) { tmp_expression_name_32 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_32 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 65; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_expression_name_32); } } tmp_expression_name_33 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[14]); if (tmp_expression_name_33 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_33 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_33 == NULL)) { tmp_expression_name_33 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_33 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_32); exception_lineno = 65; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_expression_name_33); } } tmp_subscript_name_13 = LOOKUP_ATTRIBUTE(tmp_expression_name_33, mod_consts[48]); Py_DECREF(tmp_expression_name_33); if (tmp_subscript_name_13 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_32); exception_lineno = 65; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subvalue_14 = LOOKUP_SUBSCRIPT(tmp_expression_name_32, tmp_subscript_name_13); Py_DECREF(tmp_expression_name_32); Py_DECREF(tmp_subscript_name_13); if (tmp_ass_subvalue_14 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 65; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscribed_14 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[29]); if (unlikely(tmp_ass_subscribed_14 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_14); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 65; type_description_2 = "o"; goto frame_exception_exit_3; } if (tmp_ass_subscribed_14 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_14); exception_lineno = 65; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscript_14 = mod_consts[47]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_14, tmp_ass_subscript_14, tmp_ass_subvalue_14); Py_DECREF(tmp_ass_subscribed_14); Py_DECREF(tmp_ass_subvalue_14); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 65; type_description_2 = "o"; goto frame_exception_exit_3; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[49], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 68; type_description_2 = "o"; goto frame_exception_exit_3; } { PyObject *tmp_ass_subvalue_15; PyObject *tmp_expression_name_34; PyObject *tmp_subscript_name_14; PyObject *tmp_ass_subscribed_15; PyObject *tmp_ass_subscript_15; tmp_expression_name_34 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[13]); if (tmp_expression_name_34 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_34 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_34 == NULL)) { tmp_expression_name_34 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_34 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 68; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_expression_name_34); } } tmp_subscript_name_14 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[19]); if (tmp_subscript_name_14 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_subscript_name_14 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[19]); if (unlikely(tmp_subscript_name_14 == NULL)) { tmp_subscript_name_14 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[19]); } if (tmp_subscript_name_14 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_34); exception_lineno = 68; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_subscript_name_14); } } tmp_ass_subvalue_15 = LOOKUP_SUBSCRIPT(tmp_expression_name_34, tmp_subscript_name_14); Py_DECREF(tmp_expression_name_34); Py_DECREF(tmp_subscript_name_14); if (tmp_ass_subvalue_15 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 68; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscribed_15 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[29]); if (unlikely(tmp_ass_subscribed_15 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_15); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 68; type_description_2 = "o"; goto frame_exception_exit_3; } if (tmp_ass_subscribed_15 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_15); exception_lineno = 68; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscript_15 = mod_consts[49]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_15, tmp_ass_subscript_15, tmp_ass_subvalue_15); Py_DECREF(tmp_ass_subscribed_15); Py_DECREF(tmp_ass_subvalue_15); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 68; type_description_2 = "o"; goto frame_exception_exit_3; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[50], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 69; type_description_2 = "o"; goto frame_exception_exit_3; } { PyObject *tmp_ass_subvalue_16; PyObject *tmp_expression_name_35; PyObject *tmp_subscript_name_15; PyObject *tmp_expression_name_36; PyObject *tmp_ass_subscribed_16; PyObject *tmp_ass_subscript_16; tmp_expression_name_35 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[13]); if (tmp_expression_name_35 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_35 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_35 == NULL)) { tmp_expression_name_35 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_35 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 69; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_expression_name_35); } } tmp_expression_name_36 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[14]); if (tmp_expression_name_36 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_36 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_36 == NULL)) { tmp_expression_name_36 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_36 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_35); exception_lineno = 69; type_description_2 = "o"; goto frame_exception_exit_3; } Py_INCREF(tmp_expression_name_36); } } tmp_subscript_name_15 = LOOKUP_ATTRIBUTE(tmp_expression_name_36, mod_consts[48]); Py_DECREF(tmp_expression_name_36); if (tmp_subscript_name_15 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_35); exception_lineno = 69; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subvalue_16 = LOOKUP_SUBSCRIPT(tmp_expression_name_35, tmp_subscript_name_15); Py_DECREF(tmp_expression_name_35); Py_DECREF(tmp_subscript_name_15); if (tmp_ass_subvalue_16 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 69; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscribed_16 = PyObject_GetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[29]); if (unlikely(tmp_ass_subscribed_16 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_16); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 69; type_description_2 = "o"; goto frame_exception_exit_3; } if (tmp_ass_subscribed_16 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_16); exception_lineno = 69; type_description_2 = "o"; goto frame_exception_exit_3; } tmp_ass_subscript_16 = mod_consts[50]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_16, tmp_ass_subscript_16, tmp_ass_subvalue_16); Py_DECREF(tmp_ass_subscribed_16); Py_DECREF(tmp_ass_subvalue_16); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 69; type_description_2 = "o"; goto frame_exception_exit_3; } } #if 0 RESTORE_FRAME_EXCEPTION(frame_32f46a2e9ec8fece152478dc8b391448_3); #endif // Put the previous frame back on top. popFrameStack(); goto frame_no_exception_2; frame_exception_exit_3:; #if 0 RESTORE_FRAME_EXCEPTION(frame_32f46a2e9ec8fece152478dc8b391448_3); #endif if (exception_tb == NULL) { exception_tb = MAKE_TRACEBACK(frame_32f46a2e9ec8fece152478dc8b391448_3, exception_lineno); } else if (exception_tb->tb_frame != &frame_32f46a2e9ec8fece152478dc8b391448_3->m_frame) { exception_tb = ADD_TRACEBACK(exception_tb, frame_32f46a2e9ec8fece152478dc8b391448_3, exception_lineno); } // Attaches locals to frame if any. Nuitka_Frame_AttachLocals( frame_32f46a2e9ec8fece152478dc8b391448_3, type_description_2, outline_1_var___class__ ); // Release cached frame if used for exception. if (frame_32f46a2e9ec8fece152478dc8b391448_3 == cache_frame_32f46a2e9ec8fece152478dc8b391448_3) { #if _DEBUG_REFCOUNTS count_active_frame_cache_instances -= 1; count_released_frame_cache_instances += 1; #endif Py_DECREF(cache_frame_32f46a2e9ec8fece152478dc8b391448_3); cache_frame_32f46a2e9ec8fece152478dc8b391448_3 = NULL; } assertFrameObject(frame_32f46a2e9ec8fece152478dc8b391448_3); // Put the previous frame back on top. popFrameStack(); // Return the error. goto nested_frame_exit_2; frame_no_exception_2:; goto skip_nested_handling_2; nested_frame_exit_2:; goto try_except_handler_7; skip_nested_handling_2:; { nuitka_bool tmp_condition_result_12; PyObject *tmp_compexpr_left_2; PyObject *tmp_compexpr_right_2; CHECK_OBJECT(tmp_class_creation_2__bases); tmp_compexpr_left_2 = tmp_class_creation_2__bases; CHECK_OBJECT(tmp_class_creation_2__bases_orig); tmp_compexpr_right_2 = tmp_class_creation_2__bases_orig; tmp_condition_result_12 = RICH_COMPARE_NE_NBOOL_OBJECT_TUPLE(tmp_compexpr_left_2, tmp_compexpr_right_2); if (tmp_condition_result_12 == NUITKA_BOOL_EXCEPTION) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_7; } if (tmp_condition_result_12 == NUITKA_BOOL_TRUE) { goto branch_yes_8; } else { goto branch_no_8; } assert(tmp_condition_result_12 != NUITKA_BOOL_UNASSIGNED); } branch_yes_8:; CHECK_OBJECT(tmp_class_creation_2__bases_orig); tmp_dictset_value = tmp_class_creation_2__bases_orig; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32, mod_consts[37], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_7; } branch_no_8:; { PyObject *tmp_assign_source_26; PyObject *tmp_called_name_6; PyObject *tmp_args_name_4; PyObject *tmp_tuple_element_8; PyObject *tmp_kwargs_name_4; CHECK_OBJECT(tmp_class_creation_2__metaclass); tmp_called_name_6 = tmp_class_creation_2__metaclass; tmp_tuple_element_8 = mod_consts[38]; tmp_args_name_4 = PyTuple_New(3); PyTuple_SET_ITEM0(tmp_args_name_4, 0, tmp_tuple_element_8); CHECK_OBJECT(tmp_class_creation_2__bases); tmp_tuple_element_8 = tmp_class_creation_2__bases; PyTuple_SET_ITEM0(tmp_args_name_4, 1, tmp_tuple_element_8); tmp_tuple_element_8 = locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32; PyTuple_SET_ITEM0(tmp_args_name_4, 2, tmp_tuple_element_8); CHECK_OBJECT(tmp_class_creation_2__class_decl_dict); tmp_kwargs_name_4 = tmp_class_creation_2__class_decl_dict; frame_d530d5d84b2cdfab0d209aefd1d08cf3->m_frame.f_lineno = 32; tmp_assign_source_26 = CALL_FUNCTION(tmp_called_name_6, tmp_args_name_4, tmp_kwargs_name_4); Py_DECREF(tmp_args_name_4); if (tmp_assign_source_26 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 32; goto try_except_handler_7; } assert(outline_1_var___class__ == NULL); outline_1_var___class__ = tmp_assign_source_26; } CHECK_OBJECT(outline_1_var___class__); tmp_args_element_name_2 = outline_1_var___class__; Py_INCREF(tmp_args_element_name_2); goto try_return_handler_7; NUITKA_CANNOT_GET_HERE("tried codes exits in all cases"); return NULL; // Return handler code: try_return_handler_7:; Py_DECREF(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32); locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32 = NULL; goto try_return_handler_6; // Exception handler code: try_except_handler_7:; exception_keeper_type_5 = exception_type; exception_keeper_value_5 = exception_value; exception_keeper_tb_5 = exception_tb; exception_keeper_lineno_5 = exception_lineno; exception_type = NULL; exception_value = NULL; exception_tb = NULL; exception_lineno = 0; Py_DECREF(locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32); locals_models$blip2_outputs$$$class__2_BlipIntermediateOutput_32 = NULL; // Re-raise. exception_type = exception_keeper_type_5; exception_value = exception_keeper_value_5; exception_tb = exception_keeper_tb_5; exception_lineno = exception_keeper_lineno_5; goto try_except_handler_6; // End of try: NUITKA_CANNOT_GET_HERE("tried codes exits in all cases"); return NULL; // Return handler code: try_return_handler_6:; CHECK_OBJECT(outline_1_var___class__); Py_DECREF(outline_1_var___class__); outline_1_var___class__ = NULL; goto outline_result_2; // Exception handler code: try_except_handler_6:; exception_keeper_type_6 = exception_type; exception_keeper_value_6 = exception_value; exception_keeper_tb_6 = exception_tb; exception_keeper_lineno_6 = exception_lineno; exception_type = NULL; exception_value = NULL; exception_tb = NULL; exception_lineno = 0; // Re-raise. exception_type = exception_keeper_type_6; exception_value = exception_keeper_value_6; exception_tb = exception_keeper_tb_6; exception_lineno = exception_keeper_lineno_6; goto outline_exception_2; // End of try: NUITKA_CANNOT_GET_HERE("Return statement must have exited already."); return NULL; outline_exception_2:; exception_lineno = 32; goto try_except_handler_5; outline_result_2:; frame_d530d5d84b2cdfab0d209aefd1d08cf3->m_frame.f_lineno = 31; tmp_assign_source_25 = CALL_FUNCTION_WITH_SINGLE_ARG(tmp_called_name_5, tmp_args_element_name_2); Py_DECREF(tmp_args_element_name_2); if (tmp_assign_source_25 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 31; goto try_except_handler_5; } UPDATE_STRING_DICT1(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[38], tmp_assign_source_25); } goto try_end_3; // Exception handler code: try_except_handler_5:; exception_keeper_type_7 = exception_type; exception_keeper_value_7 = exception_value; exception_keeper_tb_7 = exception_tb; exception_keeper_lineno_7 = exception_lineno; exception_type = NULL; exception_value = NULL; exception_tb = NULL; exception_lineno = 0; Py_XDECREF(tmp_class_creation_2__bases_orig); tmp_class_creation_2__bases_orig = NULL; Py_XDECREF(tmp_class_creation_2__bases); tmp_class_creation_2__bases = NULL; Py_XDECREF(tmp_class_creation_2__class_decl_dict); tmp_class_creation_2__class_decl_dict = NULL; Py_XDECREF(tmp_class_creation_2__metaclass); tmp_class_creation_2__metaclass = NULL; Py_XDECREF(tmp_class_creation_2__prepared); tmp_class_creation_2__prepared = NULL; // Re-raise. exception_type = exception_keeper_type_7; exception_value = exception_keeper_value_7; exception_tb = exception_keeper_tb_7; exception_lineno = exception_keeper_lineno_7; goto frame_exception_exit_1; // End of try: try_end_3:; CHECK_OBJECT(tmp_class_creation_2__bases_orig); Py_DECREF(tmp_class_creation_2__bases_orig); tmp_class_creation_2__bases_orig = NULL; Py_XDECREF(tmp_class_creation_2__bases); tmp_class_creation_2__bases = NULL; Py_XDECREF(tmp_class_creation_2__class_decl_dict); tmp_class_creation_2__class_decl_dict = NULL; Py_XDECREF(tmp_class_creation_2__metaclass); tmp_class_creation_2__metaclass = NULL; CHECK_OBJECT(tmp_class_creation_2__prepared); Py_DECREF(tmp_class_creation_2__prepared); tmp_class_creation_2__prepared = NULL; // Tried code: { PyObject *tmp_assign_source_27; PyObject *tmp_tuple_element_9; tmp_tuple_element_9 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[17]); if (unlikely(tmp_tuple_element_9 == NULL)) { tmp_tuple_element_9 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[17]); } if (tmp_tuple_element_9 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_8; } tmp_assign_source_27 = PyTuple_New(1); PyTuple_SET_ITEM0(tmp_assign_source_27, 0, tmp_tuple_element_9); assert(tmp_class_creation_3__bases_orig == NULL); tmp_class_creation_3__bases_orig = tmp_assign_source_27; } { PyObject *tmp_assign_source_28; PyObject *tmp_dircall_arg1_3; CHECK_OBJECT(tmp_class_creation_3__bases_orig); tmp_dircall_arg1_3 = tmp_class_creation_3__bases_orig; Py_INCREF(tmp_dircall_arg1_3); { PyObject *dir_call_args[] = {tmp_dircall_arg1_3}; tmp_assign_source_28 = impl_models$$$function__1__mro_entries_conversion(dir_call_args); } if (tmp_assign_source_28 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_8; } assert(tmp_class_creation_3__bases == NULL); tmp_class_creation_3__bases = tmp_assign_source_28; } { PyObject *tmp_assign_source_29; tmp_assign_source_29 = PyDict_New(); assert(tmp_class_creation_3__class_decl_dict == NULL); tmp_class_creation_3__class_decl_dict = tmp_assign_source_29; } { PyObject *tmp_assign_source_30; PyObject *tmp_metaclass_name_3; nuitka_bool tmp_condition_result_13; PyObject *tmp_key_name_7; PyObject *tmp_dict_arg_name_7; PyObject *tmp_dict_arg_name_8; PyObject *tmp_key_name_8; nuitka_bool tmp_condition_result_14; int tmp_truth_name_3; PyObject *tmp_type_arg_5; PyObject *tmp_expression_name_37; PyObject *tmp_subscript_name_16; PyObject *tmp_bases_name_3; tmp_key_name_7 = mod_consts[20]; CHECK_OBJECT(tmp_class_creation_3__class_decl_dict); tmp_dict_arg_name_7 = tmp_class_creation_3__class_decl_dict; tmp_res = DICT_HAS_ITEM(tmp_dict_arg_name_7, tmp_key_name_7); assert(!(tmp_res == -1)); tmp_condition_result_13 = (tmp_res != 0) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE; if (tmp_condition_result_13 == NUITKA_BOOL_TRUE) { goto condexpr_true_5; } else { goto condexpr_false_5; } condexpr_true_5:; CHECK_OBJECT(tmp_class_creation_3__class_decl_dict); tmp_dict_arg_name_8 = tmp_class_creation_3__class_decl_dict; tmp_key_name_8 = mod_consts[20]; tmp_metaclass_name_3 = DICT_GET_ITEM_WITH_ERROR(tmp_dict_arg_name_8, tmp_key_name_8); if (tmp_metaclass_name_3 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_8; } goto condexpr_end_5; condexpr_false_5:; CHECK_OBJECT(tmp_class_creation_3__bases); tmp_truth_name_3 = CHECK_IF_TRUE(tmp_class_creation_3__bases); if (tmp_truth_name_3 == -1) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_8; } tmp_condition_result_14 = tmp_truth_name_3 == 0 ? NUITKA_BOOL_FALSE : NUITKA_BOOL_TRUE; if (tmp_condition_result_14 == NUITKA_BOOL_TRUE) { goto condexpr_true_6; } else { goto condexpr_false_6; } condexpr_true_6:; CHECK_OBJECT(tmp_class_creation_3__bases); tmp_expression_name_37 = tmp_class_creation_3__bases; tmp_subscript_name_16 = mod_consts[9]; tmp_type_arg_5 = LOOKUP_SUBSCRIPT_CONST(tmp_expression_name_37, tmp_subscript_name_16, 0); if (tmp_type_arg_5 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_8; } tmp_metaclass_name_3 = BUILTIN_TYPE1(tmp_type_arg_5); Py_DECREF(tmp_type_arg_5); if (tmp_metaclass_name_3 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_8; } goto condexpr_end_6; condexpr_false_6:; tmp_metaclass_name_3 = (PyObject *)&PyType_Type; Py_INCREF(tmp_metaclass_name_3); condexpr_end_6:; condexpr_end_5:; CHECK_OBJECT(tmp_class_creation_3__bases); tmp_bases_name_3 = tmp_class_creation_3__bases; tmp_assign_source_30 = SELECT_METACLASS(tmp_metaclass_name_3, tmp_bases_name_3); Py_DECREF(tmp_metaclass_name_3); if (tmp_assign_source_30 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_8; } assert(tmp_class_creation_3__metaclass == NULL); tmp_class_creation_3__metaclass = tmp_assign_source_30; } { nuitka_bool tmp_condition_result_15; PyObject *tmp_key_name_9; PyObject *tmp_dict_arg_name_9; tmp_key_name_9 = mod_consts[20]; CHECK_OBJECT(tmp_class_creation_3__class_decl_dict); tmp_dict_arg_name_9 = tmp_class_creation_3__class_decl_dict; tmp_res = DICT_HAS_ITEM(tmp_dict_arg_name_9, tmp_key_name_9); assert(!(tmp_res == -1)); tmp_condition_result_15 = (tmp_res != 0) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE; if (tmp_condition_result_15 == NUITKA_BOOL_TRUE) { goto branch_yes_9; } else { goto branch_no_9; } } branch_yes_9:; CHECK_OBJECT(tmp_class_creation_3__class_decl_dict); tmp_dictdel_dict = tmp_class_creation_3__class_decl_dict; tmp_dictdel_key = mod_consts[20]; tmp_result = DICT_REMOVE_ITEM(tmp_dictdel_dict, tmp_dictdel_key); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_8; } branch_no_9:; { nuitka_bool tmp_condition_result_16; PyObject *tmp_expression_name_38; CHECK_OBJECT(tmp_class_creation_3__metaclass); tmp_expression_name_38 = tmp_class_creation_3__metaclass; tmp_result = HAS_ATTR_BOOL(tmp_expression_name_38, mod_consts[21]); tmp_condition_result_16 = (tmp_result) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE; if (tmp_condition_result_16 == NUITKA_BOOL_TRUE) { goto branch_yes_10; } else { goto branch_no_10; } } branch_yes_10:; { PyObject *tmp_assign_source_31; PyObject *tmp_called_name_7; PyObject *tmp_expression_name_39; PyObject *tmp_args_name_5; PyObject *tmp_tuple_element_10; PyObject *tmp_kwargs_name_5; CHECK_OBJECT(tmp_class_creation_3__metaclass); tmp_expression_name_39 = tmp_class_creation_3__metaclass; tmp_called_name_7 = LOOKUP_ATTRIBUTE(tmp_expression_name_39, mod_consts[21]); if (tmp_called_name_7 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_8; } tmp_tuple_element_10 = mod_consts[51]; tmp_args_name_5 = PyTuple_New(2); PyTuple_SET_ITEM0(tmp_args_name_5, 0, tmp_tuple_element_10); CHECK_OBJECT(tmp_class_creation_3__bases); tmp_tuple_element_10 = tmp_class_creation_3__bases; PyTuple_SET_ITEM0(tmp_args_name_5, 1, tmp_tuple_element_10); CHECK_OBJECT(tmp_class_creation_3__class_decl_dict); tmp_kwargs_name_5 = tmp_class_creation_3__class_decl_dict; frame_d530d5d84b2cdfab0d209aefd1d08cf3->m_frame.f_lineno = 73; tmp_assign_source_31 = CALL_FUNCTION(tmp_called_name_7, tmp_args_name_5, tmp_kwargs_name_5); Py_DECREF(tmp_called_name_7); Py_DECREF(tmp_args_name_5); if (tmp_assign_source_31 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_8; } assert(tmp_class_creation_3__prepared == NULL); tmp_class_creation_3__prepared = tmp_assign_source_31; } { nuitka_bool tmp_condition_result_17; PyObject *tmp_operand_name_3; PyObject *tmp_expression_name_40; CHECK_OBJECT(tmp_class_creation_3__prepared); tmp_expression_name_40 = tmp_class_creation_3__prepared; tmp_result = HAS_ATTR_BOOL(tmp_expression_name_40, mod_consts[23]); tmp_operand_name_3 = (tmp_result) ? Py_True : Py_False; tmp_res = CHECK_IF_TRUE(tmp_operand_name_3); if (tmp_res == -1) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_8; } tmp_condition_result_17 = (tmp_res == 0) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE; if (tmp_condition_result_17 == NUITKA_BOOL_TRUE) { goto branch_yes_11; } else { goto branch_no_11; } } branch_yes_11:; { PyObject *tmp_raise_type_3; PyObject *tmp_raise_value_3; PyObject *tmp_left_name_3; PyObject *tmp_right_name_3; PyObject *tmp_tuple_element_11; PyObject *tmp_getattr_target_3; PyObject *tmp_getattr_attr_3; PyObject *tmp_getattr_default_3; tmp_raise_type_3 = PyExc_TypeError; tmp_left_name_3 = mod_consts[24]; CHECK_OBJECT(tmp_class_creation_3__metaclass); tmp_getattr_target_3 = tmp_class_creation_3__metaclass; tmp_getattr_attr_3 = mod_consts[25]; tmp_getattr_default_3 = mod_consts[26]; tmp_tuple_element_11 = BUILTIN_GETATTR(tmp_getattr_target_3, tmp_getattr_attr_3, tmp_getattr_default_3); if (tmp_tuple_element_11 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_8; } tmp_right_name_3 = PyTuple_New(2); { PyObject *tmp_expression_name_41; PyObject *tmp_type_arg_6; PyTuple_SET_ITEM(tmp_right_name_3, 0, tmp_tuple_element_11); CHECK_OBJECT(tmp_class_creation_3__prepared); tmp_type_arg_6 = tmp_class_creation_3__prepared; tmp_expression_name_41 = BUILTIN_TYPE1(tmp_type_arg_6); assert(!(tmp_expression_name_41 == NULL)); tmp_tuple_element_11 = LOOKUP_ATTRIBUTE(tmp_expression_name_41, mod_consts[25]); Py_DECREF(tmp_expression_name_41); if (tmp_tuple_element_11 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto tuple_build_exception_3; } PyTuple_SET_ITEM(tmp_right_name_3, 1, tmp_tuple_element_11); } goto tuple_build_noexception_3; // Exception handling pass through code for tuple_build: tuple_build_exception_3:; Py_DECREF(tmp_right_name_3); goto try_except_handler_8; // Finished with no exception for tuple_build: tuple_build_noexception_3:; tmp_raise_value_3 = BINARY_OPERATION_MOD_OBJECT_UNICODE_TUPLE(tmp_left_name_3, tmp_right_name_3); Py_DECREF(tmp_right_name_3); if (tmp_raise_value_3 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_8; } exception_type = tmp_raise_type_3; Py_INCREF(tmp_raise_type_3); exception_value = tmp_raise_value_3; exception_lineno = 73; RAISE_EXCEPTION_IMPLICIT(&exception_type, &exception_value, &exception_tb); goto try_except_handler_8; } branch_no_11:; goto branch_end_10; branch_no_10:; { PyObject *tmp_assign_source_32; tmp_assign_source_32 = PyDict_New(); assert(tmp_class_creation_3__prepared == NULL); tmp_class_creation_3__prepared = tmp_assign_source_32; } branch_end_10:; { PyObject *tmp_assign_source_33; PyObject *tmp_called_name_8; PyObject *tmp_args_element_name_3; tmp_called_name_8 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[10]); if (unlikely(tmp_called_name_8 == NULL)) { tmp_called_name_8 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[10]); } if (tmp_called_name_8 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 72; goto try_except_handler_8; } { PyObject *tmp_set_locals_3; CHECK_OBJECT(tmp_class_creation_3__prepared); tmp_set_locals_3 = tmp_class_creation_3__prepared; locals_models$blip2_outputs$$$class__3_BlipOutput_73 = tmp_set_locals_3; Py_INCREF(tmp_set_locals_3); } // Tried code: // Tried code: tmp_dictset_value = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[25]); if (unlikely(tmp_dictset_value == NULL)) { tmp_dictset_value = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[25]); } assert(!(tmp_dictset_value == NULL)); tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[27], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_10; } tmp_dictset_value = mod_consts[51]; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[28], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_10; } tmp_dictset_value = PyDict_New(); tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[29], tmp_dictset_value); Py_DECREF(tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_10; } if (isFrameUnusable(cache_frame_23aa99519880c8dde09847cac5fec211_4)) { Py_XDECREF(cache_frame_23aa99519880c8dde09847cac5fec211_4); #if _DEBUG_REFCOUNTS if (cache_frame_23aa99519880c8dde09847cac5fec211_4 == NULL) { count_active_frame_cache_instances += 1; } else { count_released_frame_cache_instances += 1; } count_allocated_frame_cache_instances += 1; #endif cache_frame_23aa99519880c8dde09847cac5fec211_4 = MAKE_FUNCTION_FRAME(codeobj_23aa99519880c8dde09847cac5fec211, module_models$blip2_outputs, sizeof(void *)); #if _DEBUG_REFCOUNTS } else { count_hit_frame_cache_instances += 1; #endif } assert(cache_frame_23aa99519880c8dde09847cac5fec211_4->m_type_description == NULL); frame_23aa99519880c8dde09847cac5fec211_4 = cache_frame_23aa99519880c8dde09847cac5fec211_4; // Push the new frame as the currently active one. pushFrameStack(frame_23aa99519880c8dde09847cac5fec211_4); // Mark the frame object as in use, ref count 1 will be up for reuse. assert(Py_REFCNT(frame_23aa99519880c8dde09847cac5fec211_4) == 2); // Frame stack // Framed code: tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[52], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 75; type_description_2 = "o"; goto frame_exception_exit_4; } { PyObject *tmp_ass_subvalue_17; PyObject *tmp_expression_name_42; PyObject *tmp_subscript_name_17; PyObject *tmp_ass_subscribed_17; PyObject *tmp_ass_subscript_17; tmp_expression_name_42 = PyObject_GetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[13]); if (tmp_expression_name_42 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_42 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_42 == NULL)) { tmp_expression_name_42 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_42 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 75; type_description_2 = "o"; goto frame_exception_exit_4; } Py_INCREF(tmp_expression_name_42); } } tmp_subscript_name_17 = PyObject_GetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[22]); if (tmp_subscript_name_17 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_subscript_name_17 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[22]); if (unlikely(tmp_subscript_name_17 == NULL)) { tmp_subscript_name_17 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[22]); } if (tmp_subscript_name_17 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_42); exception_lineno = 75; type_description_2 = "o"; goto frame_exception_exit_4; } Py_INCREF(tmp_subscript_name_17); } } tmp_ass_subvalue_17 = LOOKUP_SUBSCRIPT(tmp_expression_name_42, tmp_subscript_name_17); Py_DECREF(tmp_expression_name_42); Py_DECREF(tmp_subscript_name_17); if (tmp_ass_subvalue_17 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 75; type_description_2 = "o"; goto frame_exception_exit_4; } tmp_ass_subscribed_17 = PyObject_GetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[29]); if (unlikely(tmp_ass_subscribed_17 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_17); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 75; type_description_2 = "o"; goto frame_exception_exit_4; } if (tmp_ass_subscribed_17 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_17); exception_lineno = 75; type_description_2 = "o"; goto frame_exception_exit_4; } tmp_ass_subscript_17 = mod_consts[52]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_17, tmp_ass_subscript_17, tmp_ass_subvalue_17); Py_DECREF(tmp_ass_subscribed_17); Py_DECREF(tmp_ass_subvalue_17); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 75; type_description_2 = "o"; goto frame_exception_exit_4; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[53], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 77; type_description_2 = "o"; goto frame_exception_exit_4; } { PyObject *tmp_ass_subvalue_18; PyObject *tmp_ass_subscribed_18; PyObject *tmp_ass_subscript_18; tmp_ass_subvalue_18 = PyObject_GetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[38]); if (tmp_ass_subvalue_18 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_ass_subvalue_18 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[38]); if (unlikely(tmp_ass_subvalue_18 == NULL)) { tmp_ass_subvalue_18 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[38]); } if (tmp_ass_subvalue_18 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 77; type_description_2 = "o"; goto frame_exception_exit_4; } Py_INCREF(tmp_ass_subvalue_18); } } tmp_ass_subscribed_18 = PyObject_GetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[29]); if (unlikely(tmp_ass_subscribed_18 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_18); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 77; type_description_2 = "o"; goto frame_exception_exit_4; } if (tmp_ass_subscribed_18 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_18); exception_lineno = 77; type_description_2 = "o"; goto frame_exception_exit_4; } tmp_ass_subscript_18 = mod_consts[53]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_18, tmp_ass_subscript_18, tmp_ass_subvalue_18); Py_DECREF(tmp_ass_subscribed_18); Py_DECREF(tmp_ass_subvalue_18); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 77; type_description_2 = "o"; goto frame_exception_exit_4; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[54], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 79; type_description_2 = "o"; goto frame_exception_exit_4; } { PyObject *tmp_ass_subvalue_19; PyObject *tmp_expression_name_43; PyObject *tmp_subscript_name_18; PyObject *tmp_expression_name_44; PyObject *tmp_ass_subscribed_19; PyObject *tmp_ass_subscript_19; tmp_expression_name_43 = PyObject_GetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[13]); if (tmp_expression_name_43 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_43 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_43 == NULL)) { tmp_expression_name_43 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_43 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 79; type_description_2 = "o"; goto frame_exception_exit_4; } Py_INCREF(tmp_expression_name_43); } } tmp_expression_name_44 = PyObject_GetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[14]); if (tmp_expression_name_44 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_44 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_44 == NULL)) { tmp_expression_name_44 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_44 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_43); exception_lineno = 79; type_description_2 = "o"; goto frame_exception_exit_4; } Py_INCREF(tmp_expression_name_44); } } tmp_subscript_name_18 = LOOKUP_ATTRIBUTE(tmp_expression_name_44, mod_consts[31]); Py_DECREF(tmp_expression_name_44); if (tmp_subscript_name_18 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_43); exception_lineno = 79; type_description_2 = "o"; goto frame_exception_exit_4; } tmp_ass_subvalue_19 = LOOKUP_SUBSCRIPT(tmp_expression_name_43, tmp_subscript_name_18); Py_DECREF(tmp_expression_name_43); Py_DECREF(tmp_subscript_name_18); if (tmp_ass_subvalue_19 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 79; type_description_2 = "o"; goto frame_exception_exit_4; } tmp_ass_subscribed_19 = PyObject_GetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[29]); if (unlikely(tmp_ass_subscribed_19 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_19); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 79; type_description_2 = "o"; goto frame_exception_exit_4; } if (tmp_ass_subscribed_19 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_19); exception_lineno = 79; type_description_2 = "o"; goto frame_exception_exit_4; } tmp_ass_subscript_19 = mod_consts[54]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_19, tmp_ass_subscript_19, tmp_ass_subvalue_19); Py_DECREF(tmp_ass_subscribed_19); Py_DECREF(tmp_ass_subvalue_19); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 79; type_description_2 = "o"; goto frame_exception_exit_4; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[55], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 81; type_description_2 = "o"; goto frame_exception_exit_4; } { PyObject *tmp_ass_subvalue_20; PyObject *tmp_expression_name_45; PyObject *tmp_subscript_name_19; PyObject *tmp_expression_name_46; PyObject *tmp_ass_subscribed_20; PyObject *tmp_ass_subscript_20; tmp_expression_name_45 = PyObject_GetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[13]); if (tmp_expression_name_45 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_45 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_45 == NULL)) { tmp_expression_name_45 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_45 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 81; type_description_2 = "o"; goto frame_exception_exit_4; } Py_INCREF(tmp_expression_name_45); } } tmp_expression_name_46 = PyObject_GetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[14]); if (tmp_expression_name_46 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_46 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_46 == NULL)) { tmp_expression_name_46 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_46 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_45); exception_lineno = 81; type_description_2 = "o"; goto frame_exception_exit_4; } Py_INCREF(tmp_expression_name_46); } } tmp_subscript_name_19 = LOOKUP_ATTRIBUTE(tmp_expression_name_46, mod_consts[31]); Py_DECREF(tmp_expression_name_46); if (tmp_subscript_name_19 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_45); exception_lineno = 81; type_description_2 = "o"; goto frame_exception_exit_4; } tmp_ass_subvalue_20 = LOOKUP_SUBSCRIPT(tmp_expression_name_45, tmp_subscript_name_19); Py_DECREF(tmp_expression_name_45); Py_DECREF(tmp_subscript_name_19); if (tmp_ass_subvalue_20 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 81; type_description_2 = "o"; goto frame_exception_exit_4; } tmp_ass_subscribed_20 = PyObject_GetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[29]); if (unlikely(tmp_ass_subscribed_20 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_20); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 81; type_description_2 = "o"; goto frame_exception_exit_4; } if (tmp_ass_subscribed_20 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_20); exception_lineno = 81; type_description_2 = "o"; goto frame_exception_exit_4; } tmp_ass_subscript_20 = mod_consts[55]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_20, tmp_ass_subscript_20, tmp_ass_subvalue_20); Py_DECREF(tmp_ass_subscribed_20); Py_DECREF(tmp_ass_subvalue_20); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 81; type_description_2 = "o"; goto frame_exception_exit_4; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[56], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 83; type_description_2 = "o"; goto frame_exception_exit_4; } { PyObject *tmp_ass_subvalue_21; PyObject *tmp_expression_name_47; PyObject *tmp_subscript_name_20; PyObject *tmp_expression_name_48; PyObject *tmp_ass_subscribed_21; PyObject *tmp_ass_subscript_21; tmp_expression_name_47 = PyObject_GetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[13]); if (tmp_expression_name_47 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_47 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_47 == NULL)) { tmp_expression_name_47 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_47 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 83; type_description_2 = "o"; goto frame_exception_exit_4; } Py_INCREF(tmp_expression_name_47); } } tmp_expression_name_48 = PyObject_GetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[14]); if (tmp_expression_name_48 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_48 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_48 == NULL)) { tmp_expression_name_48 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_48 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_47); exception_lineno = 83; type_description_2 = "o"; goto frame_exception_exit_4; } Py_INCREF(tmp_expression_name_48); } } tmp_subscript_name_20 = LOOKUP_ATTRIBUTE(tmp_expression_name_48, mod_consts[31]); Py_DECREF(tmp_expression_name_48); if (tmp_subscript_name_20 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_47); exception_lineno = 83; type_description_2 = "o"; goto frame_exception_exit_4; } tmp_ass_subvalue_21 = LOOKUP_SUBSCRIPT(tmp_expression_name_47, tmp_subscript_name_20); Py_DECREF(tmp_expression_name_47); Py_DECREF(tmp_subscript_name_20); if (tmp_ass_subvalue_21 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 83; type_description_2 = "o"; goto frame_exception_exit_4; } tmp_ass_subscribed_21 = PyObject_GetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[29]); if (unlikely(tmp_ass_subscribed_21 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_21); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 83; type_description_2 = "o"; goto frame_exception_exit_4; } if (tmp_ass_subscribed_21 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_21); exception_lineno = 83; type_description_2 = "o"; goto frame_exception_exit_4; } tmp_ass_subscript_21 = mod_consts[56]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_21, tmp_ass_subscript_21, tmp_ass_subvalue_21); Py_DECREF(tmp_ass_subscribed_21); Py_DECREF(tmp_ass_subvalue_21); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 83; type_description_2 = "o"; goto frame_exception_exit_4; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[57], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 85; type_description_2 = "o"; goto frame_exception_exit_4; } { PyObject *tmp_ass_subvalue_22; PyObject *tmp_expression_name_49; PyObject *tmp_subscript_name_21; PyObject *tmp_expression_name_50; PyObject *tmp_ass_subscribed_22; PyObject *tmp_ass_subscript_22; tmp_expression_name_49 = PyObject_GetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[13]); if (tmp_expression_name_49 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_49 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_49 == NULL)) { tmp_expression_name_49 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_49 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 85; type_description_2 = "o"; goto frame_exception_exit_4; } Py_INCREF(tmp_expression_name_49); } } tmp_expression_name_50 = PyObject_GetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[14]); if (tmp_expression_name_50 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_50 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_50 == NULL)) { tmp_expression_name_50 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_50 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_49); exception_lineno = 85; type_description_2 = "o"; goto frame_exception_exit_4; } Py_INCREF(tmp_expression_name_50); } } tmp_subscript_name_21 = LOOKUP_ATTRIBUTE(tmp_expression_name_50, mod_consts[31]); Py_DECREF(tmp_expression_name_50); if (tmp_subscript_name_21 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_49); exception_lineno = 85; type_description_2 = "o"; goto frame_exception_exit_4; } tmp_ass_subvalue_22 = LOOKUP_SUBSCRIPT(tmp_expression_name_49, tmp_subscript_name_21); Py_DECREF(tmp_expression_name_49); Py_DECREF(tmp_subscript_name_21); if (tmp_ass_subvalue_22 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 85; type_description_2 = "o"; goto frame_exception_exit_4; } tmp_ass_subscribed_22 = PyObject_GetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[29]); if (unlikely(tmp_ass_subscribed_22 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_22); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 85; type_description_2 = "o"; goto frame_exception_exit_4; } if (tmp_ass_subscribed_22 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_22); exception_lineno = 85; type_description_2 = "o"; goto frame_exception_exit_4; } tmp_ass_subscript_22 = mod_consts[57]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_22, tmp_ass_subscript_22, tmp_ass_subvalue_22); Py_DECREF(tmp_ass_subscribed_22); Py_DECREF(tmp_ass_subvalue_22); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 85; type_description_2 = "o"; goto frame_exception_exit_4; } } #if 0 RESTORE_FRAME_EXCEPTION(frame_23aa99519880c8dde09847cac5fec211_4); #endif // Put the previous frame back on top. popFrameStack(); goto frame_no_exception_3; frame_exception_exit_4:; #if 0 RESTORE_FRAME_EXCEPTION(frame_23aa99519880c8dde09847cac5fec211_4); #endif if (exception_tb == NULL) { exception_tb = MAKE_TRACEBACK(frame_23aa99519880c8dde09847cac5fec211_4, exception_lineno); } else if (exception_tb->tb_frame != &frame_23aa99519880c8dde09847cac5fec211_4->m_frame) { exception_tb = ADD_TRACEBACK(exception_tb, frame_23aa99519880c8dde09847cac5fec211_4, exception_lineno); } // Attaches locals to frame if any. Nuitka_Frame_AttachLocals( frame_23aa99519880c8dde09847cac5fec211_4, type_description_2, outline_2_var___class__ ); // Release cached frame if used for exception. if (frame_23aa99519880c8dde09847cac5fec211_4 == cache_frame_23aa99519880c8dde09847cac5fec211_4) { #if _DEBUG_REFCOUNTS count_active_frame_cache_instances -= 1; count_released_frame_cache_instances += 1; #endif Py_DECREF(cache_frame_23aa99519880c8dde09847cac5fec211_4); cache_frame_23aa99519880c8dde09847cac5fec211_4 = NULL; } assertFrameObject(frame_23aa99519880c8dde09847cac5fec211_4); // Put the previous frame back on top. popFrameStack(); // Return the error. goto nested_frame_exit_3; frame_no_exception_3:; goto skip_nested_handling_3; nested_frame_exit_3:; goto try_except_handler_10; skip_nested_handling_3:; { nuitka_bool tmp_condition_result_18; PyObject *tmp_compexpr_left_3; PyObject *tmp_compexpr_right_3; CHECK_OBJECT(tmp_class_creation_3__bases); tmp_compexpr_left_3 = tmp_class_creation_3__bases; CHECK_OBJECT(tmp_class_creation_3__bases_orig); tmp_compexpr_right_3 = tmp_class_creation_3__bases_orig; tmp_condition_result_18 = RICH_COMPARE_NE_NBOOL_OBJECT_TUPLE(tmp_compexpr_left_3, tmp_compexpr_right_3); if (tmp_condition_result_18 == NUITKA_BOOL_EXCEPTION) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_10; } if (tmp_condition_result_18 == NUITKA_BOOL_TRUE) { goto branch_yes_12; } else { goto branch_no_12; } assert(tmp_condition_result_18 != NUITKA_BOOL_UNASSIGNED); } branch_yes_12:; CHECK_OBJECT(tmp_class_creation_3__bases_orig); tmp_dictset_value = tmp_class_creation_3__bases_orig; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__3_BlipOutput_73, mod_consts[37], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_10; } branch_no_12:; { PyObject *tmp_assign_source_34; PyObject *tmp_called_name_9; PyObject *tmp_args_name_6; PyObject *tmp_tuple_element_12; PyObject *tmp_kwargs_name_6; CHECK_OBJECT(tmp_class_creation_3__metaclass); tmp_called_name_9 = tmp_class_creation_3__metaclass; tmp_tuple_element_12 = mod_consts[51]; tmp_args_name_6 = PyTuple_New(3); PyTuple_SET_ITEM0(tmp_args_name_6, 0, tmp_tuple_element_12); CHECK_OBJECT(tmp_class_creation_3__bases); tmp_tuple_element_12 = tmp_class_creation_3__bases; PyTuple_SET_ITEM0(tmp_args_name_6, 1, tmp_tuple_element_12); tmp_tuple_element_12 = locals_models$blip2_outputs$$$class__3_BlipOutput_73; PyTuple_SET_ITEM0(tmp_args_name_6, 2, tmp_tuple_element_12); CHECK_OBJECT(tmp_class_creation_3__class_decl_dict); tmp_kwargs_name_6 = tmp_class_creation_3__class_decl_dict; frame_d530d5d84b2cdfab0d209aefd1d08cf3->m_frame.f_lineno = 73; tmp_assign_source_34 = CALL_FUNCTION(tmp_called_name_9, tmp_args_name_6, tmp_kwargs_name_6); Py_DECREF(tmp_args_name_6); if (tmp_assign_source_34 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 73; goto try_except_handler_10; } assert(outline_2_var___class__ == NULL); outline_2_var___class__ = tmp_assign_source_34; } CHECK_OBJECT(outline_2_var___class__); tmp_args_element_name_3 = outline_2_var___class__; Py_INCREF(tmp_args_element_name_3); goto try_return_handler_10; NUITKA_CANNOT_GET_HERE("tried codes exits in all cases"); return NULL; // Return handler code: try_return_handler_10:; Py_DECREF(locals_models$blip2_outputs$$$class__3_BlipOutput_73); locals_models$blip2_outputs$$$class__3_BlipOutput_73 = NULL; goto try_return_handler_9; // Exception handler code: try_except_handler_10:; exception_keeper_type_8 = exception_type; exception_keeper_value_8 = exception_value; exception_keeper_tb_8 = exception_tb; exception_keeper_lineno_8 = exception_lineno; exception_type = NULL; exception_value = NULL; exception_tb = NULL; exception_lineno = 0; Py_DECREF(locals_models$blip2_outputs$$$class__3_BlipOutput_73); locals_models$blip2_outputs$$$class__3_BlipOutput_73 = NULL; // Re-raise. exception_type = exception_keeper_type_8; exception_value = exception_keeper_value_8; exception_tb = exception_keeper_tb_8; exception_lineno = exception_keeper_lineno_8; goto try_except_handler_9; // End of try: NUITKA_CANNOT_GET_HERE("tried codes exits in all cases"); return NULL; // Return handler code: try_return_handler_9:; CHECK_OBJECT(outline_2_var___class__); Py_DECREF(outline_2_var___class__); outline_2_var___class__ = NULL; goto outline_result_3; // Exception handler code: try_except_handler_9:; exception_keeper_type_9 = exception_type; exception_keeper_value_9 = exception_value; exception_keeper_tb_9 = exception_tb; exception_keeper_lineno_9 = exception_lineno; exception_type = NULL; exception_value = NULL; exception_tb = NULL; exception_lineno = 0; // Re-raise. exception_type = exception_keeper_type_9; exception_value = exception_keeper_value_9; exception_tb = exception_keeper_tb_9; exception_lineno = exception_keeper_lineno_9; goto outline_exception_3; // End of try: NUITKA_CANNOT_GET_HERE("Return statement must have exited already."); return NULL; outline_exception_3:; exception_lineno = 73; goto try_except_handler_8; outline_result_3:; frame_d530d5d84b2cdfab0d209aefd1d08cf3->m_frame.f_lineno = 72; tmp_assign_source_33 = CALL_FUNCTION_WITH_SINGLE_ARG(tmp_called_name_8, tmp_args_element_name_3); Py_DECREF(tmp_args_element_name_3); if (tmp_assign_source_33 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 72; goto try_except_handler_8; } UPDATE_STRING_DICT1(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[51], tmp_assign_source_33); } goto try_end_4; // Exception handler code: try_except_handler_8:; exception_keeper_type_10 = exception_type; exception_keeper_value_10 = exception_value; exception_keeper_tb_10 = exception_tb; exception_keeper_lineno_10 = exception_lineno; exception_type = NULL; exception_value = NULL; exception_tb = NULL; exception_lineno = 0; Py_XDECREF(tmp_class_creation_3__bases_orig); tmp_class_creation_3__bases_orig = NULL; Py_XDECREF(tmp_class_creation_3__bases); tmp_class_creation_3__bases = NULL; Py_XDECREF(tmp_class_creation_3__class_decl_dict); tmp_class_creation_3__class_decl_dict = NULL; Py_XDECREF(tmp_class_creation_3__metaclass); tmp_class_creation_3__metaclass = NULL; Py_XDECREF(tmp_class_creation_3__prepared); tmp_class_creation_3__prepared = NULL; // Re-raise. exception_type = exception_keeper_type_10; exception_value = exception_keeper_value_10; exception_tb = exception_keeper_tb_10; exception_lineno = exception_keeper_lineno_10; goto frame_exception_exit_1; // End of try: try_end_4:; CHECK_OBJECT(tmp_class_creation_3__bases_orig); Py_DECREF(tmp_class_creation_3__bases_orig); tmp_class_creation_3__bases_orig = NULL; Py_XDECREF(tmp_class_creation_3__bases); tmp_class_creation_3__bases = NULL; Py_XDECREF(tmp_class_creation_3__class_decl_dict); tmp_class_creation_3__class_decl_dict = NULL; Py_XDECREF(tmp_class_creation_3__metaclass); tmp_class_creation_3__metaclass = NULL; CHECK_OBJECT(tmp_class_creation_3__prepared); Py_DECREF(tmp_class_creation_3__prepared); tmp_class_creation_3__prepared = NULL; // Tried code: { PyObject *tmp_assign_source_35; PyObject *tmp_tuple_element_13; tmp_tuple_element_13 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[17]); if (unlikely(tmp_tuple_element_13 == NULL)) { tmp_tuple_element_13 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[17]); } if (tmp_tuple_element_13 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_11; } tmp_assign_source_35 = PyTuple_New(1); PyTuple_SET_ITEM0(tmp_assign_source_35, 0, tmp_tuple_element_13); assert(tmp_class_creation_4__bases_orig == NULL); tmp_class_creation_4__bases_orig = tmp_assign_source_35; } { PyObject *tmp_assign_source_36; PyObject *tmp_dircall_arg1_4; CHECK_OBJECT(tmp_class_creation_4__bases_orig); tmp_dircall_arg1_4 = tmp_class_creation_4__bases_orig; Py_INCREF(tmp_dircall_arg1_4); { PyObject *dir_call_args[] = {tmp_dircall_arg1_4}; tmp_assign_source_36 = impl_models$$$function__1__mro_entries_conversion(dir_call_args); } if (tmp_assign_source_36 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_11; } assert(tmp_class_creation_4__bases == NULL); tmp_class_creation_4__bases = tmp_assign_source_36; } { PyObject *tmp_assign_source_37; tmp_assign_source_37 = PyDict_New(); assert(tmp_class_creation_4__class_decl_dict == NULL); tmp_class_creation_4__class_decl_dict = tmp_assign_source_37; } { PyObject *tmp_assign_source_38; PyObject *tmp_metaclass_name_4; nuitka_bool tmp_condition_result_19; PyObject *tmp_key_name_10; PyObject *tmp_dict_arg_name_10; PyObject *tmp_dict_arg_name_11; PyObject *tmp_key_name_11; nuitka_bool tmp_condition_result_20; int tmp_truth_name_4; PyObject *tmp_type_arg_7; PyObject *tmp_expression_name_51; PyObject *tmp_subscript_name_22; PyObject *tmp_bases_name_4; tmp_key_name_10 = mod_consts[20]; CHECK_OBJECT(tmp_class_creation_4__class_decl_dict); tmp_dict_arg_name_10 = tmp_class_creation_4__class_decl_dict; tmp_res = DICT_HAS_ITEM(tmp_dict_arg_name_10, tmp_key_name_10); assert(!(tmp_res == -1)); tmp_condition_result_19 = (tmp_res != 0) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE; if (tmp_condition_result_19 == NUITKA_BOOL_TRUE) { goto condexpr_true_7; } else { goto condexpr_false_7; } condexpr_true_7:; CHECK_OBJECT(tmp_class_creation_4__class_decl_dict); tmp_dict_arg_name_11 = tmp_class_creation_4__class_decl_dict; tmp_key_name_11 = mod_consts[20]; tmp_metaclass_name_4 = DICT_GET_ITEM_WITH_ERROR(tmp_dict_arg_name_11, tmp_key_name_11); if (tmp_metaclass_name_4 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_11; } goto condexpr_end_7; condexpr_false_7:; CHECK_OBJECT(tmp_class_creation_4__bases); tmp_truth_name_4 = CHECK_IF_TRUE(tmp_class_creation_4__bases); if (tmp_truth_name_4 == -1) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_11; } tmp_condition_result_20 = tmp_truth_name_4 == 0 ? NUITKA_BOOL_FALSE : NUITKA_BOOL_TRUE; if (tmp_condition_result_20 == NUITKA_BOOL_TRUE) { goto condexpr_true_8; } else { goto condexpr_false_8; } condexpr_true_8:; CHECK_OBJECT(tmp_class_creation_4__bases); tmp_expression_name_51 = tmp_class_creation_4__bases; tmp_subscript_name_22 = mod_consts[9]; tmp_type_arg_7 = LOOKUP_SUBSCRIPT_CONST(tmp_expression_name_51, tmp_subscript_name_22, 0); if (tmp_type_arg_7 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_11; } tmp_metaclass_name_4 = BUILTIN_TYPE1(tmp_type_arg_7); Py_DECREF(tmp_type_arg_7); if (tmp_metaclass_name_4 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_11; } goto condexpr_end_8; condexpr_false_8:; tmp_metaclass_name_4 = (PyObject *)&PyType_Type; Py_INCREF(tmp_metaclass_name_4); condexpr_end_8:; condexpr_end_7:; CHECK_OBJECT(tmp_class_creation_4__bases); tmp_bases_name_4 = tmp_class_creation_4__bases; tmp_assign_source_38 = SELECT_METACLASS(tmp_metaclass_name_4, tmp_bases_name_4); Py_DECREF(tmp_metaclass_name_4); if (tmp_assign_source_38 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_11; } assert(tmp_class_creation_4__metaclass == NULL); tmp_class_creation_4__metaclass = tmp_assign_source_38; } { nuitka_bool tmp_condition_result_21; PyObject *tmp_key_name_12; PyObject *tmp_dict_arg_name_12; tmp_key_name_12 = mod_consts[20]; CHECK_OBJECT(tmp_class_creation_4__class_decl_dict); tmp_dict_arg_name_12 = tmp_class_creation_4__class_decl_dict; tmp_res = DICT_HAS_ITEM(tmp_dict_arg_name_12, tmp_key_name_12); assert(!(tmp_res == -1)); tmp_condition_result_21 = (tmp_res != 0) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE; if (tmp_condition_result_21 == NUITKA_BOOL_TRUE) { goto branch_yes_13; } else { goto branch_no_13; } } branch_yes_13:; CHECK_OBJECT(tmp_class_creation_4__class_decl_dict); tmp_dictdel_dict = tmp_class_creation_4__class_decl_dict; tmp_dictdel_key = mod_consts[20]; tmp_result = DICT_REMOVE_ITEM(tmp_dictdel_dict, tmp_dictdel_key); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_11; } branch_no_13:; { nuitka_bool tmp_condition_result_22; PyObject *tmp_expression_name_52; CHECK_OBJECT(tmp_class_creation_4__metaclass); tmp_expression_name_52 = tmp_class_creation_4__metaclass; tmp_result = HAS_ATTR_BOOL(tmp_expression_name_52, mod_consts[21]); tmp_condition_result_22 = (tmp_result) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE; if (tmp_condition_result_22 == NUITKA_BOOL_TRUE) { goto branch_yes_14; } else { goto branch_no_14; } } branch_yes_14:; { PyObject *tmp_assign_source_39; PyObject *tmp_called_name_10; PyObject *tmp_expression_name_53; PyObject *tmp_args_name_7; PyObject *tmp_tuple_element_14; PyObject *tmp_kwargs_name_7; CHECK_OBJECT(tmp_class_creation_4__metaclass); tmp_expression_name_53 = tmp_class_creation_4__metaclass; tmp_called_name_10 = LOOKUP_ATTRIBUTE(tmp_expression_name_53, mod_consts[21]); if (tmp_called_name_10 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_11; } tmp_tuple_element_14 = mod_consts[58]; tmp_args_name_7 = PyTuple_New(2); PyTuple_SET_ITEM0(tmp_args_name_7, 0, tmp_tuple_element_14); CHECK_OBJECT(tmp_class_creation_4__bases); tmp_tuple_element_14 = tmp_class_creation_4__bases; PyTuple_SET_ITEM0(tmp_args_name_7, 1, tmp_tuple_element_14); CHECK_OBJECT(tmp_class_creation_4__class_decl_dict); tmp_kwargs_name_7 = tmp_class_creation_4__class_decl_dict; frame_d530d5d84b2cdfab0d209aefd1d08cf3->m_frame.f_lineno = 89; tmp_assign_source_39 = CALL_FUNCTION(tmp_called_name_10, tmp_args_name_7, tmp_kwargs_name_7); Py_DECREF(tmp_called_name_10); Py_DECREF(tmp_args_name_7); if (tmp_assign_source_39 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_11; } assert(tmp_class_creation_4__prepared == NULL); tmp_class_creation_4__prepared = tmp_assign_source_39; } { nuitka_bool tmp_condition_result_23; PyObject *tmp_operand_name_4; PyObject *tmp_expression_name_54; CHECK_OBJECT(tmp_class_creation_4__prepared); tmp_expression_name_54 = tmp_class_creation_4__prepared; tmp_result = HAS_ATTR_BOOL(tmp_expression_name_54, mod_consts[23]); tmp_operand_name_4 = (tmp_result) ? Py_True : Py_False; tmp_res = CHECK_IF_TRUE(tmp_operand_name_4); if (tmp_res == -1) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_11; } tmp_condition_result_23 = (tmp_res == 0) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE; if (tmp_condition_result_23 == NUITKA_BOOL_TRUE) { goto branch_yes_15; } else { goto branch_no_15; } } branch_yes_15:; { PyObject *tmp_raise_type_4; PyObject *tmp_raise_value_4; PyObject *tmp_left_name_4; PyObject *tmp_right_name_4; PyObject *tmp_tuple_element_15; PyObject *tmp_getattr_target_4; PyObject *tmp_getattr_attr_4; PyObject *tmp_getattr_default_4; tmp_raise_type_4 = PyExc_TypeError; tmp_left_name_4 = mod_consts[24]; CHECK_OBJECT(tmp_class_creation_4__metaclass); tmp_getattr_target_4 = tmp_class_creation_4__metaclass; tmp_getattr_attr_4 = mod_consts[25]; tmp_getattr_default_4 = mod_consts[26]; tmp_tuple_element_15 = BUILTIN_GETATTR(tmp_getattr_target_4, tmp_getattr_attr_4, tmp_getattr_default_4); if (tmp_tuple_element_15 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_11; } tmp_right_name_4 = PyTuple_New(2); { PyObject *tmp_expression_name_55; PyObject *tmp_type_arg_8; PyTuple_SET_ITEM(tmp_right_name_4, 0, tmp_tuple_element_15); CHECK_OBJECT(tmp_class_creation_4__prepared); tmp_type_arg_8 = tmp_class_creation_4__prepared; tmp_expression_name_55 = BUILTIN_TYPE1(tmp_type_arg_8); assert(!(tmp_expression_name_55 == NULL)); tmp_tuple_element_15 = LOOKUP_ATTRIBUTE(tmp_expression_name_55, mod_consts[25]); Py_DECREF(tmp_expression_name_55); if (tmp_tuple_element_15 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto tuple_build_exception_4; } PyTuple_SET_ITEM(tmp_right_name_4, 1, tmp_tuple_element_15); } goto tuple_build_noexception_4; // Exception handling pass through code for tuple_build: tuple_build_exception_4:; Py_DECREF(tmp_right_name_4); goto try_except_handler_11; // Finished with no exception for tuple_build: tuple_build_noexception_4:; tmp_raise_value_4 = BINARY_OPERATION_MOD_OBJECT_UNICODE_TUPLE(tmp_left_name_4, tmp_right_name_4); Py_DECREF(tmp_right_name_4); if (tmp_raise_value_4 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_11; } exception_type = tmp_raise_type_4; Py_INCREF(tmp_raise_type_4); exception_value = tmp_raise_value_4; exception_lineno = 89; RAISE_EXCEPTION_IMPLICIT(&exception_type, &exception_value, &exception_tb); goto try_except_handler_11; } branch_no_15:; goto branch_end_14; branch_no_14:; { PyObject *tmp_assign_source_40; tmp_assign_source_40 = PyDict_New(); assert(tmp_class_creation_4__prepared == NULL); tmp_class_creation_4__prepared = tmp_assign_source_40; } branch_end_14:; { PyObject *tmp_assign_source_41; PyObject *tmp_called_name_11; PyObject *tmp_args_element_name_4; tmp_called_name_11 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[10]); if (unlikely(tmp_called_name_11 == NULL)) { tmp_called_name_11 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[10]); } if (tmp_called_name_11 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 88; goto try_except_handler_11; } { PyObject *tmp_set_locals_4; CHECK_OBJECT(tmp_class_creation_4__prepared); tmp_set_locals_4 = tmp_class_creation_4__prepared; locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89 = tmp_set_locals_4; Py_INCREF(tmp_set_locals_4); } // Tried code: // Tried code: tmp_dictset_value = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[25]); if (unlikely(tmp_dictset_value == NULL)) { tmp_dictset_value = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[25]); } assert(!(tmp_dictset_value == NULL)); tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[27], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_13; } tmp_dictset_value = mod_consts[59]; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[1], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_13; } tmp_dictset_value = mod_consts[58]; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[28], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_13; } tmp_dictset_value = PyDict_New(); tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[29], tmp_dictset_value); Py_DECREF(tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_13; } if (isFrameUnusable(cache_frame_bc368e4ff586eae6db3f09b46be90226_5)) { Py_XDECREF(cache_frame_bc368e4ff586eae6db3f09b46be90226_5); #if _DEBUG_REFCOUNTS if (cache_frame_bc368e4ff586eae6db3f09b46be90226_5 == NULL) { count_active_frame_cache_instances += 1; } else { count_released_frame_cache_instances += 1; } count_allocated_frame_cache_instances += 1; #endif cache_frame_bc368e4ff586eae6db3f09b46be90226_5 = MAKE_FUNCTION_FRAME(codeobj_bc368e4ff586eae6db3f09b46be90226, module_models$blip2_outputs, sizeof(void *)); #if _DEBUG_REFCOUNTS } else { count_hit_frame_cache_instances += 1; #endif } assert(cache_frame_bc368e4ff586eae6db3f09b46be90226_5->m_type_description == NULL); frame_bc368e4ff586eae6db3f09b46be90226_5 = cache_frame_bc368e4ff586eae6db3f09b46be90226_5; // Push the new frame as the currently active one. pushFrameStack(frame_bc368e4ff586eae6db3f09b46be90226_5); // Mark the frame object as in use, ref count 1 will be up for reuse. assert(Py_REFCNT(frame_bc368e4ff586eae6db3f09b46be90226_5) == 2); // Frame stack // Framed code: tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[40], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 104; type_description_2 = "o"; goto frame_exception_exit_5; } { PyObject *tmp_ass_subvalue_23; PyObject *tmp_expression_name_56; PyObject *tmp_subscript_name_23; PyObject *tmp_expression_name_57; PyObject *tmp_ass_subscribed_23; PyObject *tmp_ass_subscript_23; tmp_expression_name_56 = PyObject_GetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[13]); if (tmp_expression_name_56 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_56 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_56 == NULL)) { tmp_expression_name_56 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_56 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 104; type_description_2 = "o"; goto frame_exception_exit_5; } Py_INCREF(tmp_expression_name_56); } } tmp_expression_name_57 = PyObject_GetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[14]); if (tmp_expression_name_57 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_57 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_57 == NULL)) { tmp_expression_name_57 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_57 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_56); exception_lineno = 104; type_description_2 = "o"; goto frame_exception_exit_5; } Py_INCREF(tmp_expression_name_57); } } tmp_subscript_name_23 = LOOKUP_ATTRIBUTE(tmp_expression_name_57, mod_consts[31]); Py_DECREF(tmp_expression_name_57); if (tmp_subscript_name_23 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_56); exception_lineno = 104; type_description_2 = "o"; goto frame_exception_exit_5; } tmp_ass_subvalue_23 = LOOKUP_SUBSCRIPT(tmp_expression_name_56, tmp_subscript_name_23); Py_DECREF(tmp_expression_name_56); Py_DECREF(tmp_subscript_name_23); if (tmp_ass_subvalue_23 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 104; type_description_2 = "o"; goto frame_exception_exit_5; } tmp_ass_subscribed_23 = PyObject_GetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[29]); if (unlikely(tmp_ass_subscribed_23 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_23); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 104; type_description_2 = "o"; goto frame_exception_exit_5; } if (tmp_ass_subscribed_23 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_23); exception_lineno = 104; type_description_2 = "o"; goto frame_exception_exit_5; } tmp_ass_subscript_23 = mod_consts[40]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_23, tmp_ass_subscript_23, tmp_ass_subvalue_23); Py_DECREF(tmp_ass_subscribed_23); Py_DECREF(tmp_ass_subvalue_23); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 104; type_description_2 = "o"; goto frame_exception_exit_5; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[60], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 105; type_description_2 = "o"; goto frame_exception_exit_5; } { PyObject *tmp_ass_subvalue_24; PyObject *tmp_expression_name_58; PyObject *tmp_subscript_name_24; PyObject *tmp_expression_name_59; PyObject *tmp_ass_subscribed_24; PyObject *tmp_ass_subscript_24; tmp_expression_name_58 = PyObject_GetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[13]); if (tmp_expression_name_58 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_58 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_58 == NULL)) { tmp_expression_name_58 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_58 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 105; type_description_2 = "o"; goto frame_exception_exit_5; } Py_INCREF(tmp_expression_name_58); } } tmp_expression_name_59 = PyObject_GetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[14]); if (tmp_expression_name_59 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_59 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_59 == NULL)) { tmp_expression_name_59 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_59 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_58); exception_lineno = 105; type_description_2 = "o"; goto frame_exception_exit_5; } Py_INCREF(tmp_expression_name_59); } } tmp_subscript_name_24 = LOOKUP_ATTRIBUTE(tmp_expression_name_59, mod_consts[31]); Py_DECREF(tmp_expression_name_59); if (tmp_subscript_name_24 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_58); exception_lineno = 105; type_description_2 = "o"; goto frame_exception_exit_5; } tmp_ass_subvalue_24 = LOOKUP_SUBSCRIPT(tmp_expression_name_58, tmp_subscript_name_24); Py_DECREF(tmp_expression_name_58); Py_DECREF(tmp_subscript_name_24); if (tmp_ass_subvalue_24 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 105; type_description_2 = "o"; goto frame_exception_exit_5; } tmp_ass_subscribed_24 = PyObject_GetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[29]); if (unlikely(tmp_ass_subscribed_24 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_24); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 105; type_description_2 = "o"; goto frame_exception_exit_5; } if (tmp_ass_subscribed_24 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_24); exception_lineno = 105; type_description_2 = "o"; goto frame_exception_exit_5; } tmp_ass_subscript_24 = mod_consts[60]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_24, tmp_ass_subscript_24, tmp_ass_subvalue_24); Py_DECREF(tmp_ass_subscribed_24); Py_DECREF(tmp_ass_subvalue_24); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 105; type_description_2 = "o"; goto frame_exception_exit_5; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[41], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 107; type_description_2 = "o"; goto frame_exception_exit_5; } { PyObject *tmp_ass_subvalue_25; PyObject *tmp_expression_name_60; PyObject *tmp_subscript_name_25; PyObject *tmp_expression_name_61; PyObject *tmp_ass_subscribed_25; PyObject *tmp_ass_subscript_25; tmp_expression_name_60 = PyObject_GetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[13]); if (tmp_expression_name_60 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_60 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_60 == NULL)) { tmp_expression_name_60 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_60 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 107; type_description_2 = "o"; goto frame_exception_exit_5; } Py_INCREF(tmp_expression_name_60); } } tmp_expression_name_61 = PyObject_GetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[14]); if (tmp_expression_name_61 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_61 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_61 == NULL)) { tmp_expression_name_61 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_61 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_60); exception_lineno = 107; type_description_2 = "o"; goto frame_exception_exit_5; } Py_INCREF(tmp_expression_name_61); } } tmp_subscript_name_25 = LOOKUP_ATTRIBUTE(tmp_expression_name_61, mod_consts[31]); Py_DECREF(tmp_expression_name_61); if (tmp_subscript_name_25 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_60); exception_lineno = 107; type_description_2 = "o"; goto frame_exception_exit_5; } tmp_ass_subvalue_25 = LOOKUP_SUBSCRIPT(tmp_expression_name_60, tmp_subscript_name_25); Py_DECREF(tmp_expression_name_60); Py_DECREF(tmp_subscript_name_25); if (tmp_ass_subvalue_25 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 107; type_description_2 = "o"; goto frame_exception_exit_5; } tmp_ass_subscribed_25 = PyObject_GetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[29]); if (unlikely(tmp_ass_subscribed_25 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_25); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 107; type_description_2 = "o"; goto frame_exception_exit_5; } if (tmp_ass_subscribed_25 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_25); exception_lineno = 107; type_description_2 = "o"; goto frame_exception_exit_5; } tmp_ass_subscript_25 = mod_consts[41]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_25, tmp_ass_subscript_25, tmp_ass_subvalue_25); Py_DECREF(tmp_ass_subscribed_25); Py_DECREF(tmp_ass_subvalue_25); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 107; type_description_2 = "o"; goto frame_exception_exit_5; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[61], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 108; type_description_2 = "o"; goto frame_exception_exit_5; } { PyObject *tmp_ass_subvalue_26; PyObject *tmp_expression_name_62; PyObject *tmp_subscript_name_26; PyObject *tmp_expression_name_63; PyObject *tmp_ass_subscribed_26; PyObject *tmp_ass_subscript_26; tmp_expression_name_62 = PyObject_GetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[13]); if (tmp_expression_name_62 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_62 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_62 == NULL)) { tmp_expression_name_62 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_62 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 108; type_description_2 = "o"; goto frame_exception_exit_5; } Py_INCREF(tmp_expression_name_62); } } tmp_expression_name_63 = PyObject_GetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[14]); if (tmp_expression_name_63 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_63 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_63 == NULL)) { tmp_expression_name_63 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_63 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_62); exception_lineno = 108; type_description_2 = "o"; goto frame_exception_exit_5; } Py_INCREF(tmp_expression_name_63); } } tmp_subscript_name_26 = LOOKUP_ATTRIBUTE(tmp_expression_name_63, mod_consts[31]); Py_DECREF(tmp_expression_name_63); if (tmp_subscript_name_26 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_62); exception_lineno = 108; type_description_2 = "o"; goto frame_exception_exit_5; } tmp_ass_subvalue_26 = LOOKUP_SUBSCRIPT(tmp_expression_name_62, tmp_subscript_name_26); Py_DECREF(tmp_expression_name_62); Py_DECREF(tmp_subscript_name_26); if (tmp_ass_subvalue_26 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 108; type_description_2 = "o"; goto frame_exception_exit_5; } tmp_ass_subscribed_26 = PyObject_GetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[29]); if (unlikely(tmp_ass_subscribed_26 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_26); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 108; type_description_2 = "o"; goto frame_exception_exit_5; } if (tmp_ass_subscribed_26 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_26); exception_lineno = 108; type_description_2 = "o"; goto frame_exception_exit_5; } tmp_ass_subscript_26 = mod_consts[61]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_26, tmp_ass_subscript_26, tmp_ass_subvalue_26); Py_DECREF(tmp_ass_subscribed_26); Py_DECREF(tmp_ass_subvalue_26); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 108; type_description_2 = "o"; goto frame_exception_exit_5; } } tmp_dictset_value = Py_None; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[62], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 110; type_description_2 = "o"; goto frame_exception_exit_5; } { PyObject *tmp_ass_subvalue_27; PyObject *tmp_expression_name_64; PyObject *tmp_subscript_name_27; PyObject *tmp_expression_name_65; PyObject *tmp_ass_subscribed_27; PyObject *tmp_ass_subscript_27; tmp_expression_name_64 = PyObject_GetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[13]); if (tmp_expression_name_64 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_64 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[13]); if (unlikely(tmp_expression_name_64 == NULL)) { tmp_expression_name_64 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[13]); } if (tmp_expression_name_64 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 110; type_description_2 = "o"; goto frame_exception_exit_5; } Py_INCREF(tmp_expression_name_64); } } tmp_expression_name_65 = PyObject_GetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[14]); if (tmp_expression_name_65 == NULL) { if (CHECK_AND_CLEAR_KEY_ERROR_OCCURRED()) { tmp_expression_name_65 = GET_STRING_DICT_VALUE(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[14]); if (unlikely(tmp_expression_name_65 == NULL)) { tmp_expression_name_65 = GET_MODULE_VARIABLE_VALUE_FALLBACK(mod_consts[14]); } if (tmp_expression_name_65 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_64); exception_lineno = 110; type_description_2 = "o"; goto frame_exception_exit_5; } Py_INCREF(tmp_expression_name_65); } } tmp_subscript_name_27 = LOOKUP_ATTRIBUTE(tmp_expression_name_65, mod_consts[31]); Py_DECREF(tmp_expression_name_65); if (tmp_subscript_name_27 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_expression_name_64); exception_lineno = 110; type_description_2 = "o"; goto frame_exception_exit_5; } tmp_ass_subvalue_27 = LOOKUP_SUBSCRIPT(tmp_expression_name_64, tmp_subscript_name_27); Py_DECREF(tmp_expression_name_64); Py_DECREF(tmp_subscript_name_27); if (tmp_ass_subvalue_27 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 110; type_description_2 = "o"; goto frame_exception_exit_5; } tmp_ass_subscribed_27 = PyObject_GetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[29]); if (unlikely(tmp_ass_subscribed_27 == NULL && CHECK_AND_CLEAR_KEY_ERROR_OCCURRED())) { Py_DECREF(tmp_ass_subvalue_27); FORMAT_NAME_ERROR(&exception_type, &exception_value, mod_consts[29]); NORMALIZE_EXCEPTION(&exception_type, &exception_value, &exception_tb); CHAIN_EXCEPTION(exception_value); exception_lineno = 110; type_description_2 = "o"; goto frame_exception_exit_5; } if (tmp_ass_subscribed_27 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); Py_DECREF(tmp_ass_subvalue_27); exception_lineno = 110; type_description_2 = "o"; goto frame_exception_exit_5; } tmp_ass_subscript_27 = mod_consts[62]; tmp_result = SET_SUBSCRIPT(tmp_ass_subscribed_27, tmp_ass_subscript_27, tmp_ass_subvalue_27); Py_DECREF(tmp_ass_subscribed_27); Py_DECREF(tmp_ass_subvalue_27); if (tmp_result == false) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 110; type_description_2 = "o"; goto frame_exception_exit_5; } } #if 0 RESTORE_FRAME_EXCEPTION(frame_bc368e4ff586eae6db3f09b46be90226_5); #endif // Put the previous frame back on top. popFrameStack(); goto frame_no_exception_4; frame_exception_exit_5:; #if 0 RESTORE_FRAME_EXCEPTION(frame_bc368e4ff586eae6db3f09b46be90226_5); #endif if (exception_tb == NULL) { exception_tb = MAKE_TRACEBACK(frame_bc368e4ff586eae6db3f09b46be90226_5, exception_lineno); } else if (exception_tb->tb_frame != &frame_bc368e4ff586eae6db3f09b46be90226_5->m_frame) { exception_tb = ADD_TRACEBACK(exception_tb, frame_bc368e4ff586eae6db3f09b46be90226_5, exception_lineno); } // Attaches locals to frame if any. Nuitka_Frame_AttachLocals( frame_bc368e4ff586eae6db3f09b46be90226_5, type_description_2, outline_3_var___class__ ); // Release cached frame if used for exception. if (frame_bc368e4ff586eae6db3f09b46be90226_5 == cache_frame_bc368e4ff586eae6db3f09b46be90226_5) { #if _DEBUG_REFCOUNTS count_active_frame_cache_instances -= 1; count_released_frame_cache_instances += 1; #endif Py_DECREF(cache_frame_bc368e4ff586eae6db3f09b46be90226_5); cache_frame_bc368e4ff586eae6db3f09b46be90226_5 = NULL; } assertFrameObject(frame_bc368e4ff586eae6db3f09b46be90226_5); // Put the previous frame back on top. popFrameStack(); // Return the error. goto nested_frame_exit_4; frame_no_exception_4:; goto skip_nested_handling_4; nested_frame_exit_4:; goto try_except_handler_13; skip_nested_handling_4:; { nuitka_bool tmp_condition_result_24; PyObject *tmp_compexpr_left_4; PyObject *tmp_compexpr_right_4; CHECK_OBJECT(tmp_class_creation_4__bases); tmp_compexpr_left_4 = tmp_class_creation_4__bases; CHECK_OBJECT(tmp_class_creation_4__bases_orig); tmp_compexpr_right_4 = tmp_class_creation_4__bases_orig; tmp_condition_result_24 = RICH_COMPARE_NE_NBOOL_OBJECT_TUPLE(tmp_compexpr_left_4, tmp_compexpr_right_4); if (tmp_condition_result_24 == NUITKA_BOOL_EXCEPTION) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_13; } if (tmp_condition_result_24 == NUITKA_BOOL_TRUE) { goto branch_yes_16; } else { goto branch_no_16; } assert(tmp_condition_result_24 != NUITKA_BOOL_UNASSIGNED); } branch_yes_16:; CHECK_OBJECT(tmp_class_creation_4__bases_orig); tmp_dictset_value = tmp_class_creation_4__bases_orig; tmp_res = PyObject_SetItem(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89, mod_consts[37], tmp_dictset_value); if (tmp_res != 0) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_13; } branch_no_16:; { PyObject *tmp_assign_source_42; PyObject *tmp_called_name_12; PyObject *tmp_args_name_8; PyObject *tmp_tuple_element_16; PyObject *tmp_kwargs_name_8; CHECK_OBJECT(tmp_class_creation_4__metaclass); tmp_called_name_12 = tmp_class_creation_4__metaclass; tmp_tuple_element_16 = mod_consts[58]; tmp_args_name_8 = PyTuple_New(3); PyTuple_SET_ITEM0(tmp_args_name_8, 0, tmp_tuple_element_16); CHECK_OBJECT(tmp_class_creation_4__bases); tmp_tuple_element_16 = tmp_class_creation_4__bases; PyTuple_SET_ITEM0(tmp_args_name_8, 1, tmp_tuple_element_16); tmp_tuple_element_16 = locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89; PyTuple_SET_ITEM0(tmp_args_name_8, 2, tmp_tuple_element_16); CHECK_OBJECT(tmp_class_creation_4__class_decl_dict); tmp_kwargs_name_8 = tmp_class_creation_4__class_decl_dict; frame_d530d5d84b2cdfab0d209aefd1d08cf3->m_frame.f_lineno = 89; tmp_assign_source_42 = CALL_FUNCTION(tmp_called_name_12, tmp_args_name_8, tmp_kwargs_name_8); Py_DECREF(tmp_args_name_8); if (tmp_assign_source_42 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 89; goto try_except_handler_13; } assert(outline_3_var___class__ == NULL); outline_3_var___class__ = tmp_assign_source_42; } CHECK_OBJECT(outline_3_var___class__); tmp_args_element_name_4 = outline_3_var___class__; Py_INCREF(tmp_args_element_name_4); goto try_return_handler_13; NUITKA_CANNOT_GET_HERE("tried codes exits in all cases"); return NULL; // Return handler code: try_return_handler_13:; Py_DECREF(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89); locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89 = NULL; goto try_return_handler_12; // Exception handler code: try_except_handler_13:; exception_keeper_type_11 = exception_type; exception_keeper_value_11 = exception_value; exception_keeper_tb_11 = exception_tb; exception_keeper_lineno_11 = exception_lineno; exception_type = NULL; exception_value = NULL; exception_tb = NULL; exception_lineno = 0; Py_DECREF(locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89); locals_models$blip2_outputs$$$class__4_BlipOutputFeatures_89 = NULL; // Re-raise. exception_type = exception_keeper_type_11; exception_value = exception_keeper_value_11; exception_tb = exception_keeper_tb_11; exception_lineno = exception_keeper_lineno_11; goto try_except_handler_12; // End of try: NUITKA_CANNOT_GET_HERE("tried codes exits in all cases"); return NULL; // Return handler code: try_return_handler_12:; CHECK_OBJECT(outline_3_var___class__); Py_DECREF(outline_3_var___class__); outline_3_var___class__ = NULL; goto outline_result_4; // Exception handler code: try_except_handler_12:; exception_keeper_type_12 = exception_type; exception_keeper_value_12 = exception_value; exception_keeper_tb_12 = exception_tb; exception_keeper_lineno_12 = exception_lineno; exception_type = NULL; exception_value = NULL; exception_tb = NULL; exception_lineno = 0; // Re-raise. exception_type = exception_keeper_type_12; exception_value = exception_keeper_value_12; exception_tb = exception_keeper_tb_12; exception_lineno = exception_keeper_lineno_12; goto outline_exception_4; // End of try: NUITKA_CANNOT_GET_HERE("Return statement must have exited already."); return NULL; outline_exception_4:; exception_lineno = 89; goto try_except_handler_11; outline_result_4:; frame_d530d5d84b2cdfab0d209aefd1d08cf3->m_frame.f_lineno = 88; tmp_assign_source_41 = CALL_FUNCTION_WITH_SINGLE_ARG(tmp_called_name_11, tmp_args_element_name_4); Py_DECREF(tmp_args_element_name_4); if (tmp_assign_source_41 == NULL) { assert(ERROR_OCCURRED()); FETCH_ERROR_OCCURRED(&exception_type, &exception_value, &exception_tb); exception_lineno = 88; goto try_except_handler_11; } UPDATE_STRING_DICT1(moduledict_models$blip2_outputs, (Nuitka_StringObject *)mod_consts[58], tmp_assign_source_41); } goto try_end_5; // Exception handler code: try_except_handler_11:; exception_keeper_type_13 = exception_type; exception_keeper_value_13 = exception_value; exception_keeper_tb_13 = exception_tb; exception_keeper_lineno_13 = exception_lineno; exception_type = NULL; exception_value = NULL; exception_tb = NULL; exception_lineno = 0; Py_XDECREF(tmp_class_creation_4__bases_orig); tmp_class_creation_4__bases_orig = NULL; Py_XDECREF(tmp_class_creation_4__bases); tmp_class_creation_4__bases = NULL; Py_XDECREF(tmp_class_creation_4__class_decl_dict); tmp_class_creation_4__class_decl_dict = NULL; Py_XDECREF(tmp_class_creation_4__metaclass); tmp_class_creation_4__metaclass = NULL; Py_XDECREF(tmp_class_creation_4__prepared); tmp_class_creation_4__prepared = NULL; // Re-raise. exception_type = exception_keeper_type_13; exception_value = exception_keeper_value_13; exception_tb = exception_keeper_tb_13; exception_lineno = exception_keeper_lineno_13; goto frame_exception_exit_1; // End of try: try_end_5:; // Restore frame exception if necessary. #if 0 RESTORE_FRAME_EXCEPTION(frame_d530d5d84b2cdfab0d209aefd1d08cf3); #endif popFrameStack(); assertFrameObject(frame_d530d5d84b2cdfab0d209aefd1d08cf3); goto frame_no_exception_5; frame_exception_exit_1:; #if 0 RESTORE_FRAME_EXCEPTION(frame_d530d5d84b2cdfab0d209aefd1d08cf3); #endif if (exception_tb == NULL) { exception_tb = MAKE_TRACEBACK(frame_d530d5d84b2cdfab0d209aefd1d08cf3, exception_lineno); } else if (exception_tb->tb_frame != &frame_d530d5d84b2cdfab0d209aefd1d08cf3->m_frame) { exception_tb = ADD_TRACEBACK(exception_tb, frame_d530d5d84b2cdfab0d209aefd1d08cf3, exception_lineno); } // Put the previous frame back on top. popFrameStack(); // Return the error. goto module_exception_exit; frame_no_exception_5:; CHECK_OBJECT(tmp_class_creation_4__bases_orig); Py_DECREF(tmp_class_creation_4__bases_orig); tmp_class_creation_4__bases_orig = NULL; Py_XDECREF(tmp_class_creation_4__bases); tmp_class_creation_4__bases = NULL; Py_XDECREF(tmp_class_creation_4__class_decl_dict); tmp_class_creation_4__class_decl_dict = NULL; Py_XDECREF(tmp_class_creation_4__metaclass); tmp_class_creation_4__metaclass = NULL; CHECK_OBJECT(tmp_class_creation_4__prepared); Py_DECREF(tmp_class_creation_4__prepared); tmp_class_creation_4__prepared = NULL; return module_models$blip2_outputs; module_exception_exit: RESTORE_ERROR_OCCURRED(exception_type, exception_value, exception_tb); return NULL; }