Changeset 6160
- Timestamp:
- 09/13/07 23:12:02 (1 year ago)
- Files:
-
- django/trunk/docs/request_response.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/request_response.txt
r6155 r6160 185 185 has more than one value, ``__getitem__()`` returns the last value. 186 186 Raises ``django.utils.datastructure.MultiValueDictKeyError`` if the key 187 does not exist (fortunately, this is a subclass of Python's standard188 ``KeyError``, so you can stick to catching ``KeyError``).187 does not exist. (This is a subclass of Python's standard ``KeyError``, 188 so you can stick to catching ``KeyError``.) 189 189 190 190 * ``__setitem__(key, value)`` -- Sets the given key to ``[value]``
