Issue #24406: Add sentences on dict comparisons, similar to those for Sequence

and set comparisions.  Patch by Gareth Rees.
This commit is contained in:
Terry Jan Reedy 2015-06-12 16:38:57 -04:00
parent e12e7aa3fd
commit fe63c9a298
1 changed files with 4 additions and 0 deletions

View File

@ -3905,6 +3905,10 @@ pairs within braces, for example: ``{'jack': 4098, 'sjoerd': 4127}`` or ``{4098:
Return a new view of the dictionary's values. See the
:ref:`documentation of view objects <dict-views>`.
Dictionaries compare equal if and only if they have the same ``(key,
value)`` pairs. Order comparisons ('<', '<=', '>=', '>') raise
:exc:`TypeError`.
.. seealso::
:class:`types.MappingProxyType` can be used to create a read-only view
of a :class:`dict`.