From 5be203ab93615a29b4f80cccdb9c352866d48726 Mon Sep 17 00:00:00 2001 From: cocoatomo Date: Fri, 31 Mar 2017 14:48:49 +0900 Subject: [PATCH] bpo-29952: Use usual terminology of dict (GH-917) s/keys and elements/keys and values/ (cherry picked from commit cdcac039fb447f2ab04efcacbe663751bb2cb4ec) --- Doc/reference/expressions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index 7c1f2a6dc2d39c..d4d007330c7972 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`.