diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-04-13 20:09:37 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-04-13 20:09:37 +0000 |
| commit | b6cef5185dcb4e9ff6c26c378f65590daaa8d828 (patch) | |
| tree | 44e32fcfa700ae62f7255d102d3a9071b3363b2f /CHANGES.txt | |
| parent | 223fe5414a519183192f0a95d017e968c344729c (diff) | |
| download | pyramid-b6cef5185dcb4e9ff6c26c378f65590daaa8d828.tar.gz pyramid-b6cef5185dcb4e9ff6c26c378f65590daaa8d828.tar.bz2 pyramid-b6cef5185dcb4e9ff6c26c378f65590daaa8d828.zip | |
- ``repoze.bfg.testing.DummyRequest`` will now contain ``params``,
``GET``, and ``POST`` attributes that are instances of the class
``FauxMultiDict``. A FauxMultiDict differs from a "plain"
dictionary inasmuch as it has a ``getall`` method. ``getall`` is an
interface exposed by the MultiDict implementation used by WebOb for
``params``, ``GET``, and ``POST``.
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 463daf95c..61640109b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,16 @@ +Next release +============ + +Features +-------- + +- ``repoze.bfg.testing.DummyRequest`` will now contain ``params``, + ``GET``, and ``POST`` attributes that are instances of the class + ``FauxMultiDict``. A FauxMultiDict differs from a "plain" + dictionary inasmuch as it has a ``getall`` method. ``getall`` is an + interface exposed by the MultiDict implementation used by WebOb for + ``params``, ``GET``, and ``POST``. + 0.7.0 (2009-04-11) ================== |
