------------------
Bugfixes
^^^^^^^^
- Fixed creating and updating of :class:`~multidict.MultiDict`
from a sequence of pairs and keyword arguments. Previously passing
a list argument modified it inplace, and other sequences caused an
error.
:issue:`457`
- Fixed comparing with mapping: an exception raised in the
:py:meth:`~object.__len__` method caused raising a SyntaxError.
:issue:`459`
- Fixed comparing with mapping: all exceptions raised in the
:py:meth:`~object.__getitem__` method were silenced.
:issue:`460`