diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2022-02-23 18:53:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-23 18:53:24 (GMT) |
commit | 281ea9c39146a00cdf3fa2b3d0be60e2a39278ce (patch) | |
tree | 2b60f8107121cc78a7154dfa006078ada55e3318 /Include/internal | |
parent | 78859e58e4e016286e648d1dc155e0f6cebfa6ff (diff) | |
download | cpython-281ea9c39146a00cdf3fa2b3d0be60e2a39278ce.zip cpython-281ea9c39146a00cdf3fa2b3d0be60e2a39278ce.tar.gz cpython-281ea9c39146a00cdf3fa2b3d0be60e2a39278ce.tar.bz2 |
bpo-44337: Shrink the LOAD_ATTR/STORE_ATTR caches (GH-31517)
Diffstat (limited to 'Include/internal')
-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 d7a514d..88bbefc 100644 --- a/Include/internal/pycore_code.h +++ b/Include/internal/pycore_code.h @@ -23,7 +23,7 @@ typedef struct { typedef struct { uint32_t tp_version; - uint32_t dk_version_or_hint; + uint32_t dk_version; } _PyAttrCache; typedef struct { |