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:
parent
928e0a180e
commit
f02861fa93
|
@ -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.,
|
||||
|
|
Loading…
Reference in New Issue