]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix code comment regarding DK_ENTRIES (GH-113960)
authorMatthias Diener <matthias.diener@gmail.com>
Tue, 12 Mar 2024 14:05:30 +0000 (09:05 -0500)
committerGitHub <noreply@github.com>
Tue, 12 Mar 2024 14:05:30 +0000 (15:05 +0100)
fix code comment regarding dict entries

Include/internal/pycore_dict.h

index cd171a4384db5d920e1bb7041f1116048a9378a7..ef59960dbab0717ab67e83e1277c29c3509db670 100644 (file)
@@ -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. */