diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2025-04-24 18:25:29 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-24 18:25:29 -0600 |
commit | e54e8288521c1bd5fa496dfa281d034af20d8f42 (patch) | |
tree | b2bfe83090c980b39c2e1097e3d33b59f33e6c05 /Include/internal/pycore_interp_structs.h | |
parent | c9f3f5b4ed52d7bed6073ffa39717ece47202558 (diff) | |
download | cpython-e54e8288521c1bd5fa496dfa281d034af20d8f42.tar.gz cpython-e54e8288521c1bd5fa496dfa281d034af20d8f42.zip |
gh-132776: Cleanup for XIBufferViewType (gh-132821)
* add notes
* rename XIBufferViewObject to xibufferview
* move memoryview XIData code to memoryobject.c
Diffstat (limited to 'Include/internal/pycore_interp_structs.h')
-rw-r--r-- | Include/internal/pycore_interp_structs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Include/internal/pycore_interp_structs.h b/Include/internal/pycore_interp_structs.h index af6ee3ab489..3c2b2d30028 100644 --- a/Include/internal/pycore_interp_structs.h +++ b/Include/internal/pycore_interp_structs.h @@ -9,6 +9,7 @@ extern "C" { #include "pycore_ast_state.h" // struct ast_state #include "pycore_llist.h" // struct llist_node +#include "pycore_memoryobject.h" // struct _memoryobject_state #include "pycore_opcode_utils.h" // NUM_COMMON_CONSTANTS #include "pycore_pymath.h" // _PY_SHORT_FLOAT_REPR #include "pycore_structs.h" // PyHamtObject @@ -912,9 +913,10 @@ struct _is { struct _dtoa_state dtoa; struct _py_func_state func_state; struct _py_code_state code_state; - struct _Py_dict_state dict_state; struct _Py_exc_state exc_state; + struct _memoryobject_state memobj_state; + struct _Py_mem_interp_free_queue mem_free_queue; struct ast_state ast; |