Ticket #7233: picklable_QueryDict.diff
File picklable_QueryDict.diff, 518 bytes (added by , 16 years ago) |
---|
-
django/http/__init__.py
128 128 Values retrieved from this class are converted from the given encoding 129 129 (DEFAULT_CHARSET by default) to unicode. 130 130 """ 131 132 _mutable = True 133 encoding = None 134 131 135 def __init__(self, query_string, mutable=False, encoding=None): 132 136 MultiValueDict.__init__(self) 133 137 if not encoding: