diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2023-03-11 01:01:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-11 01:01:16 (GMT) |
commit | 08b67fb34f4519be1b0bb4673643a2c761c7ae92 (patch) | |
tree | e7ab280d96ddc896b3f44845d1d322d317a7d0a0 /Lib/opcode.py | |
parent | 767d3a8f6f2f94daa15ad3759d0ecdf4c009b7ab (diff) | |
download | cpython-08b67fb34f4519be1b0bb4673643a2c761c7ae92.zip cpython-08b67fb34f4519be1b0bb4673643a2c761c7ae92.tar.gz cpython-08b67fb34f4519be1b0bb4673643a2c761c7ae92.tar.bz2 |
GH-90997: Shrink the LOAD_GLOBAL caches (#102569)
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r-- | Lib/opcode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py index 809d24e..23529d8 100644 --- a/Lib/opcode.py +++ b/Lib/opcode.py @@ -390,7 +390,7 @@ _cache_format = { "LOAD_GLOBAL": { "counter": 1, "index": 1, - "module_keys_version": 2, + "module_keys_version": 1, "builtin_keys_version": 1, }, "BINARY_OP": { |