diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-09-08 19:01:25 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-09-08 19:01:25 (GMT) |
commit | a4348cc1bef6f97d0a44b5f8fc60fbcffbcf7cb9 (patch) | |
tree | 71d65420a1f2999502bcd6db29b6e7cbcb1e14c1 /Objects/dictobject.c | |
parent | 58f7c5a9554e95b030e5d72f7ef4e48db87a6149 (diff) | |
download | cpython-a4348cc1bef6f97d0a44b5f8fc60fbcffbcf7cb9.zip cpython-a4348cc1bef6f97d0a44b5f8fc60fbcffbcf7cb9.tar.gz cpython-a4348cc1bef6f97d0a44b5f8fc60fbcffbcf7cb9.tar.bz2 |
Add documentation to the dict implementation
Issue #27350.
Diffstat (limited to 'Objects/dictobject.c')
-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 be0d721..d86a0f3 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -593,7 +593,7 @@ contributions by Reimer Behrends, Jyrki Alakuijala, Vladimir Marangozov and Christian Tismer. lookdict() is general-purpose, and may return DKIX_ERROR if (and only if) a -comparison raises an exception (this was new in Python 2.5). +comparison raises an exception. lookdict_unicode() below is specialized to string keys, comparison of which can never raise an exception; that function can never return DKIX_ERROR. lookdict_unicode_nodummy is further specialized for string keys that cannot be |