Author: russellm
Date: 2009-09-13 01:31:17 -0500 (Sun, 13 Sep 2009)
New Revision: 11558
Modified:
django/branches/releases/1.1.X/docs/ref/request-response.txt
Log:
[1.1.X] Fixed #11728 -- Corrected a typo in a class name in the
request/response docs. Thanks to Tommstein for the report.
Merge of r11536 from trunk.
Modified: django/branches/releases/1.1.X/docs/ref/request-response.txt
===================================================================
--- django/branches/releases/1.1.X/docs/ref/request-response.txt
2009-09-13 06:31:04 UTC (rev 11557)
+++ django/branches/releases/1.1.X/docs/ref/request-response.txt
2009-09-13 06:31:17 UTC (rev 11558)
@@ -262,7 +262,7 @@
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
+ ``django.utils.datastructures.MultiValueDictKeyError`` if the key does not
exist. (This is a subclass of Python's standard ``KeyError``, so you can
stick to catching ``KeyError``.)
@@ -310,7 +310,7 @@
>>> q = QueryDict('a=1&a=2&a=3')
>>> q.items()
[('a', '3')]
-
+
.. method:: QueryDict.iteritems()
Just like the standard dictionary ``iteritems()`` method. Like
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---