Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a385942 commit 1002fbeCopy full SHA for 1002fbe
Include/internal/pycore_dict.h
@@ -212,6 +212,7 @@ static inline PyDictUnicodeEntry* DK_UNICODE_ENTRIES(PyDictKeysObject *dk) {
212
#define DICT_WATCHER_AND_MODIFICATION_MASK ((1 << (DICT_MAX_WATCHERS + DICT_WATCHED_MUTATION_BITS)) - 1)
213
214
#define DICT_VALUES_SIZE(values) ((uint8_t *)values)[-1]
215
+#define DICT_VALUES_USED_SIZE(values) ((uint8_t *)values)[-2]
216
217
#ifdef Py_GIL_DISABLED
218
#define DICT_NEXT_VERSION(INTERP) \
0 commit comments