Fixed bug in docs/request_response.txt. Thanks, Anders Hovmöller

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1868 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-01-08 23:41:33 +00:00
parent 928e0a180e
commit f02861fa93
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ subclass of dictionary. Exceptions are outlined here:
* ``__setitem__(key, value)`` -- Sets the given key to ``[value]``
(a Python list whose single element is ``value``). Note that this, as
other dictionary functions that have side effects, can only be called on
an immutable ``QueryDict`` (one that was created via ``copy()``).
a mutable ``QueryDict`` (one that was created via ``copy()``).
* ``__contains__(key)`` -- **New in Django development version.** Returns
``True`` if the given key is set. This lets you do, e.g.,