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

s/keys and elements/keys and values/
(cherry picked from commit cdcac039fb)
This commit is contained in:
INADA Naoki 2017-03-31 15:43:10 +09:00 committed by GitHub
parent 8d1f935945
commit 4c75fbb485

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`.