Author: mtredinnick
Date: 2007-07-04 03:36:05 -0500 (Wed, 04 Jul 2007)
New Revision: 5607
Modified:
django/branches/unicode/django/http/__init__.py
Log:
unicode: Fixed a docstring that was no longer completely accurate.
Modified: django/branches/unicode/django/http/__init__.py
===================================================================
--- django/branches/unicode/django/http/__init__.py 2007-07-04 08:30:03 UTC
(rev 5606)
+++ django/branches/unicode/django/http/__init__.py 2007-07-04 08:36:05 UTC
(rev 5607)
@@ -100,9 +100,8 @@
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)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---