diff options
| author | Mark Shannon <mark@hotpy.org> | 2024-04-02 10:59:21 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-02 10:59:21 (GMT) |
| commit | c32dc47aca6e8fac152699bc613e015c44ccdba9 (patch) | |
| tree | e183f7c56ad5e081879c3dd75f7e11887fe7e26c /Include/cpython | |
| parent | c97d3af2391e62ef456ef2365d48ab9b8cdbe27b (diff) | |
| download | cpython-c32dc47aca6e8fac152699bc613e015c44ccdba9.zip cpython-c32dc47aca6e8fac152699bc613e015c44ccdba9.tar.gz cpython-c32dc47aca6e8fac152699bc613e015c44ccdba9.tar.bz2 | |
GH-115776: Embed the values array into the object, for "normal" Python objects. (GH-116115)
Diffstat (limited to 'Include/cpython')
| -rw-r--r-- | Include/cpython/pystats.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Include/cpython/pystats.h b/Include/cpython/pystats.h index 2fb7723..e74fdd4 100644 --- a/Include/cpython/pystats.h +++ b/Include/cpython/pystats.h @@ -77,12 +77,11 @@ typedef struct _object_stats { uint64_t frees; uint64_t to_freelist; uint64_t from_freelist; - uint64_t new_values; + uint64_t inline_values; uint64_t dict_materialized_on_request; uint64_t dict_materialized_new_key; uint64_t dict_materialized_too_big; uint64_t dict_materialized_str_subclass; - uint64_t dict_dematerialized; uint64_t type_cache_hits; uint64_t type_cache_misses; uint64_t type_cache_dunder_hits; |
