1 #ifndef Py_CPYTHON_FROZENDICTOBJECT_H 2 # error "this header file must not be included directly" 3 #endif 4 5 typedef struct { 6 PyObject_HEAD 7 8 Py_ssize_t ma_used; 9 uint64_t ma_version_tag; 10 PyDictKeysObject* ma_keys; 11 PyObject** ma_values; 12 13 Py_hash_t _hash; 14 short _hash_calculated; 15 } PyFrozenDictObject; 16