diff options
| -rw-r--r-- | HACKING.txt | 2 | ||||
| -rw-r--r-- | pyramid/interfaces.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/HACKING.txt b/HACKING.txt index 64c8f461a..32381cc6c 100644 --- a/HACKING.txt +++ b/HACKING.txt @@ -88,7 +88,7 @@ Coding Style mandatory. - Please do not remove trailing whitespace. Configure your editor to reduce - diff noise. + diff noise. See https://github.com/Pylons/pyramid/issues/788 for more. Running Tests -------------- 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. |
