diff options
author | Matthias Diener <matthias.diener@gmail.com> | 2024-03-12 09:05:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-12 15:05:30 +0100 |
commit | 3265087c07c261d1b5f526953682def334a52d56 (patch) | |
tree | 535d07a2be125a93ffff626f1f00a7822614de1d | |
parent | gh-116616: Use relaxed atomic ops to access socket module defaulttimeout (#11... (diff) | |
download | cpython-3265087c07c261d1b5f526953682def334a52d56.tar.gz cpython-3265087c07c261d1b5f526953682def334a52d56.tar.bz2 cpython-3265087c07c261d1b5f526953682def334a52d56.zip |
Fix code comment regarding DK_ENTRIES (GH-113960)
fix code comment regarding dict entries
-rw-r--r-- | Include/internal/pycore_dict.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_dict.h b/Include/internal/pycore_dict.h index cd171a4384d..ef59960dbab 100644 --- a/Include/internal/pycore_dict.h +++ b/Include/internal/pycore_dict.h @@ -167,7 +167,7 @@ struct _dictkeysobject { char dk_indices[]; /* char is required to avoid strict aliasing. */ /* "PyDictKeyEntry or PyDictUnicodeEntry dk_entries[USABLE_FRACTION(DK_SIZE(dk))];" array follows: - see the DK_ENTRIES() macro */ + see the DK_ENTRIES() / DK_UNICODE_ENTRIES() functions below */ }; /* This must be no more than 250, for the prefix size to fit in one byte. */ |