]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #23006 whitespace
authorTerry Jan Reedy <tjreedy@udel.edu>
Wed, 10 Dec 2014 23:48:23 +0000 (18:48 -0500)
committerTerry Jan Reedy <tjreedy@udel.edu>
Wed, 10 Dec 2014 23:48:23 +0000 (18:48 -0500)
Doc/library/stdtypes.rst

index e076cbbad7dbf4062a38ad990e3a22e4f618da2e..1e34b5139920be76be0e3214d8c6f99c0d7367b3 100644 (file)
@@ -3761,8 +3761,8 @@ pairs within braces, for example: ``{'jack': 4098, 'sjoerd': 4127}`` or ``{4098:
       Return the item of *d* with key *key*.  Raises a :exc:`KeyError` if *key* is
       not in the map.
 
-         .. index:: __missing__()
-
+      .. index:: __missing__()
+  
       If a subclass of dict defines a method :meth:`__missing__` and *key*
       is not present, the ``d[key]`` operation calls that method with the key *key*
       as argument.  The ``d[key]`` operation then returns or raises whatever is