From 216fae2352871e04e8edd44045c63bf5379ab229 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Wed, 4 Jul 2007 08:36:05 +0000 Subject: [PATCH] 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 --- django/http/__init__.py | 5 ++--- 1 file 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)