From: dalgarno <32097481+dalgarno@users.noreply.github.com> Date: Tue, 10 Sep 2019 09:45:07 +0000 (+0100) Subject: Fix typo in dict object comment (#15814) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=359143c68659d165f52320d368667e0eff279dc5;p=python Fix typo in dict object comment (#15814) --- diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 73956df4ab..5c0640d1df 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