From 06c6218d00204941006214d9a1fdc25b38ea8a0a Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Wed, 10 Dec 2014 18:48:23 -0500 Subject: [PATCH] Issue #23006 whitespace --- Doc/library/stdtypes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index e076cbbad7d..1e34b513992 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -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