File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -70,8 +70,8 @@ A values array
70
70
Tunable Dictionary Parameters
71
71
-----------------------------
72
72
73
- See comments for PyDict_MINSIZE_SPLIT, PyDict_MINSIZE_COMBINED,
74
- USABLE_FRACTION and GROWTH_RATE in dictobject.c
73
+ See comments for PyDict_MINSIZE, USABLE_FRACTION and GROWTH_RATE in
74
+ dictobject.c
75
75
76
76
Tune-ups should be measured across a broad range of applications and
77
77
use cases. A change to any parameter will help in some situations and
Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ Size of indices is dk_size. Type of each index in indices is vary on dk_size:
40
40
* int32 for 2**16 <= dk_size <= 2**31
41
41
* int64 for 2**32 <= dk_size
42
42
43
- dk_entries is array of PyDictKeyEntry. Its size is USABLE_FRACTION(dk_size).
44
- DK_ENTRIES(dk) can be used to get pointer to entries .
43
+ dk_entries is array of PyDictKeyEntry when dk_kind == DICT_KEYS_GENERAL or
44
+ PyDictUnicodeEntry otherwise. Its length is USABLE_FRACTION(dk_size) .
45
45
46
46
NOTE: Since negative value is used for DKIX_EMPTY and DKIX_DUMMY, type of
47
47
dk_indices entry is signed integer and int16 is used for table which
You can’t perform that action at this time.
0 commit comments