whitespace

This commit is contained in:
Terry Jan Reedy 2014-12-10 18:49:58 -05:00
parent 06c6218d00
commit e40031d1db
1 changed files with 1 additions and 1 deletions

View File

@ -3762,7 +3762,7 @@ pairs within braces, for example: ``{'jack': 4098, 'sjoerd': 4127}`` or ``{4098:
not in the map.
.. 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