summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-09-14 04:12:02 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-09-14 04:12:02 +0000
commit6767849212f8229c12d4daa6be45a24f417bce03 (patch)
tree5a9de1f9bad911a28acd8cc1146508dee75a6ab7 /docs
parente86d35879fa7b111d271dfab393a7691b90fca6c (diff)
Edited docs/request_response.txt change from [6155]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6160 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/request_response.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/request_response.txt b/docs/request_response.txt
index 1eef41659a..cf68505066 100644
--- a/docs/request_response.txt
+++ b/docs/request_response.txt
@@ -184,8 +184,8 @@ subclass of dictionary. Exceptions are outlined here:
* ``__getitem__(key)`` -- Returns the value for the given key. If the key
has more than one value, ``__getitem__()`` returns the last value.
Raises ``django.utils.datastructure.MultiValueDictKeyError`` if the key
- does not exist (fortunately, this is a subclass of Python's standard
- ``KeyError``, so you can stick to catching ``KeyError``).
+ does not exist. (This is a subclass of Python's standard ``KeyError``,
+ so you can stick to catching ``KeyError``.)
* ``__setitem__(key, value)`` -- Sets the given key to ``[value]``
(a Python list whose single element is ``value``). Note that this, as