Index: tests/regressiontests/httpwrappers/tests.py
===================================================================
--- tests/regressiontests/httpwrappers/tests.py	(revision 9811)
+++ tests/regressiontests/httpwrappers/tests.py	(working copy)
@@ -401,6 +401,15 @@
 >>> q == q1
 True
 
+#####################################
+# Pickling a multi-valued QueryDict #
+#####################################
+>>> import pickle
+>>> q = QueryDict('a=b&c=d&a=1')
+>>> q1 = pickle.loads(pickle.dumps(q, 2))
+>>> q == q1
+True
+
 ######################################
 # HttpResponse with Unicode headers  #
 ######################################
