Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tumb1er committed Jan 28, 2016
2 parents 1ec0ff0 + 190347c commit 6ed9c13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/multidict.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ MultiDict

If the same key appears several times it will be added, e.g.::

>>> d = MultiDict[('a', 1), ('b', 2), ('a', 3)])
>>> d = MultiDict([('a', 1), ('b', 2), ('a', 3)])
>>> d
<MultiDict {'a': 1, 'b': 2, 'a': 3}>
<MultiDict ('a': 1, 'b': 2, 'a': 3)>

.. method:: len(d)

Expand Down

0 comments on commit 6ed9c13

Please sign in to comment.