summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-07-04 08:36:05 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-07-04 08:36:05 +0000
commit216fae2352871e04e8edd44045c63bf5379ab229 (patch)
treef142421e028753e5da25f641d9456d45e3bc5deb
parent0084147c4bce4472b3f2ae321a7757fe2b7f1d27 (diff)
unicode: Fixed a docstring that was no longer completely accurate.
git-svn-id: http://code.djangoproject.com/svn/django/branches/unicode@5607 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/http/__init__.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/django/http/__init__.py b/django/http/__init__.py
index 14acd9afde..7061644a4e 100644
--- a/django/http/__init__.py
+++ b/django/http/__init__.py
@@ -100,9 +100,8 @@ class QueryDict(MultiValueDict):
A specialized MultiValueDict that takes a query string when initialized.
This is immutable unless you create a copy of it.
- Values retrieved from this class are converted from the default encoding to
- unicode (this is done on retrieval, rather than input, to avoid breaking
- references or mutating referenced objects).
+ Values retrieved from this class are converted from the given encoding
+ (DEFAULT_CHARSET by default) to unicode.
"""
def __init__(self, query_string, mutable=False, encoding=None):
MultiValueDict.__init__(self)