bpo-29952: Use usual terminology of dict (GH-917)

s/keys and elements/keys and values/
This commit is contained in:
cocoatomo 2017-03-31 14:48:49 +09:00 committed by INADA Naoki
parent ed3dd1c02a
commit cdcac039fb
1 changed files with 1 additions and 1 deletions

View File

@ -1355,7 +1355,7 @@ built-in types.
true).
* Mappings (instances of :class:`dict`) compare equal if and only if they have
equal `(key, value)` pairs. Equality comparison of the keys and elements
equal `(key, value)` pairs. Equality comparison of the keys and values
enforces reflexivity.
Order comparisons (``<``, ``>``, ``<=``, and ``>=``) raise :exc:`TypeError`.