diff -r 73acb8c187d4 Doc/library/stdtypes.rst --- a/Doc/library/stdtypes.rst Mon Jun 08 12:44:43 2015 +0300 +++ b/Doc/library/stdtypes.rst Mon Jun 08 12:32:25 2015 +0100 @@ -4155,6 +4155,11 @@ Return a new view of the dictionary's values. See the :ref:`documentation of view objects `. + Dictionaries compare equal if and only if they have the same ``(key, + value)`` pairs. Order comparisons ``('<', '<=', '>=', '>')`` raise + :exc:`TypeError`. (For full details see :ref:`comparisons` in the + language reference.) + .. seealso:: :class:`types.MappingProxyType` can be used to create a read-only view of a :class:`dict`.