Merge 3.4

This commit is contained in:
Terry Jan Reedy 2014-12-10 18:39:45 -05:00
commit e6b2b78a7d
3 changed files with 18 additions and 5 deletions

View file

@ -1904,6 +1904,12 @@ through the container; for mappings, :meth:`__iter__` should be the same as
indexes to allow proper detection of the end of the sequence.
.. method:: object.__missing__(self, key)
Called by :class:`dict`\ .\ :meth:`__getitem__` to implement ``self[key]`` for dict subclasses
when key is not in the dictionary.
.. method:: object.__setitem__(self, key, value)
Called to implement assignment to ``self[key]``. Same note as for