We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c36c2b7 commit 1e35b61Copy full SHA for 1e35b61
Python/optimizer.c
@@ -737,6 +737,13 @@ translate_bytecode_to_trace(
737
ADD_TO_TRACE(_TIER2_RESUME_CHECK, 0, 0, target);
738
break;
739
740
+ // VVVVVV ПРЕДЛАГАЕМОЕ ИСПРАВЛЕНИЕ ЗДЕСЬ VVVVVV
741
+ case LOAD_GLOBAL:
742
+ _Py_BloomFilter_Add(dependencies, frame->f_globals);
743
+ _Py_BloomFilter_Add(dependencies, frame->f_builtins);
744
+ _Py_FALLTHROUGH;
745
+ // ^^^^^^ КОНЕЦ ИСПРАВЛЕНИЯ ^^^^^^
746
+
747
default:
748
{
749
const struct opcode_macro_expansion *expansion = &_PyOpcode_macro_expansion[opcode];
0 commit comments