diff options
author | dalgarno <32097481+dalgarno@users.noreply.github.com> | 2019-09-10 09:45:07 (GMT) |
---|---|---|
committer | Dino Viehland <dinoviehland@gmail.com> | 2019-09-10 09:45:07 (GMT) |
commit | 359143c68659d165f52320d368667e0eff279dc5 (patch) | |
tree | 626ac74ab585b2af3698dc2e1d4d3f78e9270f87 | |
parent | c6bbcd258302b4b9b3d4f3c39bb5f7ff0120ec67 (diff) | |
download | cpython-359143c68659d165f52320d368667e0eff279dc5.zip cpython-359143c68659d165f52320d368667e0eff279dc5.tar.gz cpython-359143c68659d165f52320d368667e0eff279dc5.tar.bz2 |
Fix typo in dict object comment (#15814)
-rw-r--r-- | Objects/dictobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 73956df..5c0640d 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -39,7 +39,7 @@ Size of indices is dk_size. Type of each index in indices is vary on dk_size: * int32 for 2**16 <= dk_size <= 2**31 * int64 for 2**32 <= dk_size -dk_entries is array of PyDictKeyEntry. It's size is USABLE_FRACTION(dk_size). +dk_entries is array of PyDictKeyEntry. Its size is USABLE_FRACTION(dk_size). DK_ENTRIES(dk) can be used to get pointer to entries. NOTE: Since negative value is used for DKIX_EMPTY and DKIX_DUMMY, type of |