summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-01-18 14:10:29 -0800
committerChris McDonough <chrism@plope.com>2013-01-18 14:10:29 -0800
commit9778b043a6298bcdd4191bd500229ce4650263b2 (patch)
treef88fcf309a8253c1f252024dbf575148f0162598
parentefbda3775ae8e57c310bffecf53e10cd6f3f117b (diff)
parentb9a6b35ec0e828f8377ddb80479690ff60495f45 (diff)
downloadpyramid-9778b043a6298bcdd4191bd500229ce4650263b2.tar.gz
pyramid-9778b043a6298bcdd4191bd500229ce4650263b2.tar.bz2
pyramid-9778b043a6298bcdd4191bd500229ce4650263b2.zip
Merge pull request #799 from tshepang/comma
add missing comma
-rw-r--r--pyramid/interfaces.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/interfaces.py b/pyramid/interfaces.py
index b176d49fb..54bce6fd2 100644
--- a/pyramid/interfaces.py
+++ b/pyramid/interfaces.py
@@ -460,7 +460,7 @@ class IAuthorizationPolicy(Interface):
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.