From 9ae873fcd83221a17d41f31f2ac32e37f439ae7b Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Tue, 31 Mar 2009 05:14:13 +0000 Subject: 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 --- tests/regressiontests/httpwrappers/tests.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tests') diff --git a/tests/regressiontests/httpwrappers/tests.py b/tests/regressiontests/httpwrappers/tests.py index 844b356366..15b872821c 100644 --- a/tests/regressiontests/httpwrappers/tests.py +++ b/tests/regressiontests/httpwrappers/tests.py @@ -396,10 +396,18 @@ u'\ufffd' # Pickling a QueryDict # ######################## >>> import pickle +>>> q = QueryDict('') +>>> q1 = pickle.loads(pickle.dumps(q, 2)) +>>> q == q1 +True >>> q = QueryDict('a=b&c=d') >>> q1 = pickle.loads(pickle.dumps(q, 2)) >>> q == q1 True +>>> q = QueryDict('a=b&c=d&a=1') +>>> q1 = pickle.loads(pickle.dumps(q, 2)) +>>> q == q1 +True ###################################### # HttpResponse with Unicode headers # -- cgit v1.3