Skip to content

Commit 5e0c7bc

Browse files
gh-115941: fixes in dictobject.c doc block(#116196)
1 parent ff96b81 commit 5e0c7bc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Objects/dictobject.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ As of Python 3.6, this is compact and ordered. Basic idea is described here:
2121
| dk_log2_size |
2222
| dk_log2_index_bytes |
2323
| dk_kind |
24+
| dk_version |
2425
| dk_usable |
2526
| dk_nentries |
2627
+---------------------+
@@ -55,7 +56,7 @@ The DictObject can be in one of two forms.
5556
Either:
5657
A combined table:
5758
ma_values == NULL, dk_refcnt == 1.
58-
Values are stored in the me_value field of the PyDictKeysObject.
59+
Values are stored in the me_value field of the PyDictKeyEntry.
5960
Or:
6061
A split table:
6162
ma_values != NULL, dk_refcnt >= 1

0 commit comments

Comments
 (0)