mirror of
https://github.com/python/cpython.git
synced 2024-12-20 23:34:40 +08:00
merge heads (#13887)
This commit is contained in:
commit
bc9f1b5a14
@ -595,6 +595,11 @@ stack manipulations such as ``dup``, ``drop``, ``swap``, ``over``, ``pick``,
|
||||
:class:`dict` class when the requested key is not found; whatever it
|
||||
returns or raises is then returned or raised by :meth:`__getitem__`.
|
||||
|
||||
Note that :meth:`__missing__` is *not* called for any operations besides
|
||||
:meth:`__getitem__`. This means that :meth:`get` will, like normal
|
||||
dictionaries, return ``None`` as a default rather than using
|
||||
:attr:`default_factory`.
|
||||
|
||||
|
||||
:class:`defaultdict` objects support the following instance variable:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user