Chris McDonough
2013-01-18 9778b043a6298bcdd4191bd500229ce4650263b2
Merge pull request #799 from tshepang/comma

add missing comma
1 files modified
2 ■■■ changed files
pyramid/interfaces.py 2 ●●● patch | view | raw | blame | history
pyramid/interfaces.py
@@ -460,7 +460,7 @@
class IMultiDict(IDict): # docs-only interface
    """
    An ordered dictionary that can have multiple values for each key. A
    multidict adds the methods ``getall``, ``getone``, ``mixed``, ``extend``
    multidict adds the methods ``getall``, ``getone``, ``mixed``, ``extend``,
    ``add``, and ``dict_of_lists`` to the normal dictionary interface.  A
    multidict data structure is used as ``request.POST``, ``request.GET``,
    and ``request.params`` within an :app:`Pyramid` application.