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 /Include/internal/pycore_code.h | |
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 'Include/internal/pycore_code.h')
-rw-r--r-- | Include/internal/pycore_code.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_code.h b/Include/internal/pycore_code.h index 10f1e32..6bd212d 100644 --- a/Include/internal/pycore_code.h +++ b/Include/internal/pycore_code.h @@ -20,7 +20,7 @@ extern "C" { typedef struct { uint16_t counter; uint16_t index; - uint16_t module_keys_version[2]; + uint16_t module_keys_version; uint16_t builtin_keys_version; } _PyLoadGlobalCache; |