Changeset 5607
- Timestamp:
- 07/04/07 03:36:05 (2 years ago)
- Files:
-
- django/branches/unicode/django/http/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/unicode/django/http/__init__.py
r5597 r5607 101 101 This is immutable unless you create a copy of it. 102 102 103 Values retrieved from this class are converted from the default encoding to 104 unicode (this is done on retrieval, rather than input, to avoid breaking 105 references or mutating referenced objects). 103 Values retrieved from this class are converted from the given encoding 104 (DEFAULT_CHARSET by default) to unicode. 106 105 """ 107 106 def __init__(self, query_string, mutable=False, encoding=None):
