From: INADA Naoki Date: Fri, 31 Mar 2017 06:43:35 +0000 (+0900) Subject: bpo-29952: Use usual terminology of dict (GH-923) X-Git-Tag: v3.5.4rc1~237 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f3158121132a1519439bf4c7dba3333b07802d6d;p=thirdparty%2FPython%2Fcpython.git bpo-29952: Use usual terminology of dict (GH-923) s/keys and elements/keys and values/ (cherry picked from commit cdcac039fb447f2ab04efcacbe663751bb2cb4ec) --- diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index 7c1f2a6dc2d3..d4d007330c79 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -1195,7 +1195,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`.