mirror of
https://github.com/python/cpython.git
synced 2025-10-03 13:45:29 +00:00
bpo-24274: fix comment in dictobject.c (GH-194)
This commit is contained in:
parent
7c95a94c3a
commit
66fa9d4205
1 changed files with 1 additions and 1 deletions
|
@ -429,7 +429,7 @@ Christian Tismer.
|
|||
lookdict() is general-purpose, and may return NULL if (and only if) a
|
||||
comparison raises an exception (this was new in Python 2.5).
|
||||
lookdict_unicode() below is specialized to string keys, comparison of which can
|
||||
never raise an exception; that function can never return NULL.
|
||||
never raise an exception; that function must not return NULL for string key.
|
||||
lookdict_unicode_nodummy is further specialized for string keys that cannot be
|
||||
the <dummy> value.
|
||||
For both, when the key isn't found a PyDictEntry* is returned
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue