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:
parent
0084147c4b
commit
216fae2352
@ -100,9 +100,8 @@ class QueryDict(MultiValueDict):
|
|||||||
A specialized MultiValueDict that takes a query string when initialized.
|
A specialized MultiValueDict that takes a query string when initialized.
|
||||||
This is immutable unless you create a copy of it.
|
This is immutable unless you create a copy of it.
|
||||||
|
|
||||||
Values retrieved from this class are converted from the default encoding to
|
Values retrieved from this class are converted from the given encoding
|
||||||
unicode (this is done on retrieval, rather than input, to avoid breaking
|
(DEFAULT_CHARSET by default) to unicode.
|
||||||
references or mutating referenced objects).
|
|
||||||
"""
|
"""
|
||||||
def __init__(self, query_string, mutable=False, encoding=None):
|
def __init__(self, query_string, mutable=False, encoding=None):
|
||||||
MultiValueDict.__init__(self)
|
MultiValueDict.__init__(self)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user