summaryrefslogtreecommitdiffstats
path: root/Objects/dict-common.h
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/dict-common.h')
-rw-r--r--Objects/dict-common.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/Objects/dict-common.h b/Objects/dict-common.h
index c3baf59..ce9edab 100644
--- a/Objects/dict-common.h
+++ b/Objects/dict-common.h
@@ -41,12 +41,10 @@ struct _dictkeysobject {
- lookdict_split(): Version of lookdict() for split tables. */
dict_lookup_func dk_lookup;
- /* Number of usable entries in dk_entries.
- 0 <= dk_usable <= USABLE_FRACTION(dk_size) */
+ /* Number of usable entries in dk_entries. */
Py_ssize_t dk_usable;
- /* Number of used entries in dk_entries.
- 0 <= dk_nentries < dk_size */
+ /* Number of used entries in dk_entries. */
Py_ssize_t dk_nentries;
/* Actual hash table of dk_size entries. It holds indices in dk_entries,