From: cocoatomo Date: Fri, 31 Mar 2017 05:48:49 +0000 (+0900) Subject: bpo-29952: Use usual terminology of dict (GH-917) X-Git-Tag: v3.7.0a1~1030 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cdcac039fb447f2ab04efcacbe663751bb2cb4ec;p=python bpo-29952: Use usual terminology of dict (GH-917) s/keys and elements/keys and values/ --- diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index d80768ac07..c4f6c55c7c 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -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`.