summaryrefslogtreecommitdiff
path: root/docs/request_response.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-01-11 05:07:38 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-01-11 05:07:38 +0000
commit8013f76a40270283f9d3c04160ac9b8a72ffe2be (patch)
tree7b7626286b882c3622d341ab6d1e56c4e0083607 /docs/request_response.txt
parent8f42a9246580dc11e8c1975eb364816495ba488c (diff)
magic-removal: Merged to [1903]
git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@1904 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/request_response.txt')
-rw-r--r--docs/request_response.txt7
1 files changed, 2 insertions, 5 deletions
diff --git a/docs/request_response.txt b/docs/request_response.txt
index 47e0ec9ccf..818c639d9a 100644
--- a/docs/request_response.txt
+++ b/docs/request_response.txt
@@ -151,9 +151,8 @@ subclass of dictionary. Exceptions are outlined here:
other dictionary functions that have side effects, can only be called on
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.,
- ``if "foo" in request.GET``.
+ * ``__contains__(key)`` -- Returns ``True`` if the given key is set. This
+ lets you do, e.g., ``if "foo" in request.GET``.
* ``get(key, default)`` -- Uses the same logic as ``__getitem__()`` above,
with a hook for returning a default value if the key doesn't exist.
@@ -361,8 +360,6 @@ types of HTTP responses. Like ``HttpResponse``, these subclasses live in
an HTTP status code 302.
``HttpResponsePermanentRedirect``
- **New in Django development version.***
-
Like ``HttpResponseRedirect``, but it returns a permanent redirect (HTTP
status code 301) instead of a "found" redirect (status code 302).