diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-12-10 23:49:58 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-12-10 23:49:58 (GMT) |
commit | e40031d1dbd8093e79b2f6705209632b6cf24f19 (patch) | |
tree | 0b10bf183c04077d231885055b9368405befccf4 /Doc | |
parent | 06c6218d00204941006214d9a1fdc25b38ea8a0a (diff) | |
download | cpython-e40031d1dbd8093e79b2f6705209632b6cf24f19.zip cpython-e40031d1dbd8093e79b2f6705209632b6cf24f19.tar.gz cpython-e40031d1dbd8093e79b2f6705209632b6cf24f19.tar.bz2 |
whitespace
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/stdtypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 1e34b51..095b0ce 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -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 |