diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-01-11 00:11:29 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-01-11 00:11:29 +0000 |
| commit | 786e5477b70e34a502d1b0dd8fbf59926699e480 (patch) | |
| tree | 2778a2e490ddaff6c5e45de8f4007afe0e953d1c /docs/request_response.txt | |
| parent | 7573756e18b813a3aa388ff031e3167aa4665c15 (diff) | |
Removed 'Only in Django development version' messages from the docs, because frozen docs for version 0.90 are now available
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1898 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/request_response.txt')
| -rw-r--r-- | docs/request_response.txt | 7 |
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). |
