From: Matthias Diener Date: Tue, 12 Mar 2024 14:05:30 +0000 (-0500) Subject: Fix code comment regarding DK_ENTRIES (GH-113960) X-Git-Tag: v3.13.0a5~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3265087c07c261d1b5f526953682def334a52d56;p=thirdparty%2FPython%2Fcpython.git Fix code comment regarding DK_ENTRIES (GH-113960) fix code comment regarding dict entries --- diff --git a/Include/internal/pycore_dict.h b/Include/internal/pycore_dict.h index cd171a4384db..ef59960dbab0 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. */