Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Include/internal/pycore_code.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ typedef struct {
typedef struct {
_Py_BackoffCounter counter;
uint16_t type_version[2];
uint16_t value_offset;
union {
uint16_t keys_version[2];
uint16_t dict_offset;
Expand All @@ -121,6 +122,13 @@ typedef struct {

#define INLINE_CACHE_ENTRIES_STORE_ATTR CACHE_ENTRIES(_PyAttrCache)

typedef struct {
_Py_BackoffCounter counter;
uint16_t version[2];
uint16_t value_offset;
uint16_t index;
} _PyLoadAttrInstanceValueCache;

typedef struct {
_Py_BackoffCounter counter;
uint16_t func_version[2];
Expand Down
60 changes: 30 additions & 30 deletions Include/internal/pycore_opcode_metadata.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading