diff options
author | Skip Montanaro <skip@pobox.com> | 2008-09-17 11:50:36 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2008-09-17 11:50:36 (GMT) |
commit | b40890db07cad4416135f4571ac89a46b6425562 (patch) | |
tree | a07b8f370f7294b6ec066e7f9f5abb66cfd01a46 | |
parent | 4da1da094cae9417822083f97dfb9f4cc5e912a1 (diff) | |
download | cpython-b40890db07cad4416135f4571ac89a46b6425562.zip cpython-b40890db07cad4416135f4571ac89a46b6425562.tar.gz cpython-b40890db07cad4416135f4571ac89a46b6425562.tar.bz2 |
usage
-rw-r--r-- | Doc/library/collections.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 3b49a74..a66b555 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -380,7 +380,7 @@ in Unix:: .. method:: defaultdict.__missing__(key) - If the :attr:`default_factory` attribute is ``None``, this raises an + If the :attr:`default_factory` attribute is ``None``, this raises a :exc:`KeyError` exception with the *key* as argument. If :attr:`default_factory` is not ``None``, it is called without arguments |