1
0
mirror of https://github.com/django/django.git synced 2025-07-04 01:39:20 +00:00

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
This commit is contained in:
Malcolm Tredinnick 2007-07-04 08:36:05 +00:00
parent 0084147c4b
commit 216fae2352

View File

@ -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)