https://github.com/python/cpython/commit/3265087c07c261d1b5f526953682def334a52d56
commit: 3265087c07c261d1b5f526953682def334a52d56
branch: main
author: Matthias Diener <[email protected]>
committer: encukou <[email protected]>
date: 2024-03-12T15:05:30+01:00
summary:

Fix code comment regarding DK_ENTRIES (GH-113960)

fix code comment regarding dict entries

files:
M Include/internal/pycore_dict.h

diff --git a/Include/internal/pycore_dict.h b/Include/internal/pycore_dict.h
index cd171a4384db5d..ef59960dbab071 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. */

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to