Django

Code

Changeset 6160

Show
Ignore:
Timestamp:
09/13/07 23:12:02 (1 year ago)
Author:
adrian
Message:

Edited docs/request_response.txt change from [6155]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/request_response.txt

    r6155 r6160  
    185185      has more than one value, ``__getitem__()`` returns the last value. 
    186186      Raises ``django.utils.datastructure.MultiValueDictKeyError`` if the key 
    187       does not exist (fortunately, this is a subclass of Python's standard 
    188       ``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``.) 
    189189 
    190190    * ``__setitem__(key, value)`` -- Sets the given key to ``[value]``