summaryrefslogtreecommitdiff
path: root/django/http
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2009-03-31 05:14:13 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2009-03-31 05:14:13 +0000
commit9ae873fcd83221a17d41f31f2ac32e37f439ae7b (patch)
tree3290d2f88485ab5f104574c18df798dce603c35f /django/http
parent62353e8fe74b37d60841696846f985e45e8b03bf (diff)
Fixed #10184: QueryDicts with multiple values can now be safely pickled. Thanks, Alex Gaynor.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10240 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/http')
-rw-r--r--django/http/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/http/__init__.py b/django/http/__init__.py
index 60b6d15795..812a0fdfa1 100644
--- a/django/http/__init__.py
+++ b/django/http/__init__.py
@@ -189,7 +189,7 @@ class QueryDict(MultiValueDict):
for key, value in dict.items(self):
dict.__setitem__(result, copy.deepcopy(key, memo), copy.deepcopy(value, memo))
return result
-
+
def setlist(self, key, list_):
self._assert_mutable()
key = str_to_unicode(key, self.encoding)