From: INADA Naoki Date: Fri, 31 Mar 2017 06:43:10 +0000 (+0900) Subject: bpo-29952: Use usual terminology of dict (GH-922) X-Git-Tag: v3.6.2rc1~265 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4c75fbb485c0e42181aab95c2ae92c597915827c;p=thirdparty%2FPython%2Fcpython.git bpo-29952: Use usual terminology of dict (GH-922) 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 d80768ac07dc..c4f6c55c7ca3 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`.