summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-06-12 20:47:58 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2015-06-12 20:47:58 (GMT)
commit8322b0694539863e7ea66785a7e6d5022ffd284a (patch)
treea7860ed446783f1e87e3679d7b54e236e9795aaf /Doc
parent815f1a9128695ade021d1bbbff7533d48e11cf9f (diff)
parent6ac5cc15ce2eb54c8a79ff7d92a38949ba4437ca (diff)
downloadcpython-8322b0694539863e7ea66785a7e6d5022ffd284a.zip
cpython-8322b0694539863e7ea66785a7e6d5022ffd284a.tar.gz
cpython-8322b0694539863e7ea66785a7e6d5022ffd284a.tar.bz2
Merge with 3.4
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/stdtypes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index ec07183..89d031c 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -4158,7 +4158,7 @@ pairs within braces, for example: ``{'jack': 4098, 'sjoerd': 4127}`` or ``{4098:
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`.