Improved the regression test in [8460] a bit, based on some information from

John Huddleston in #7496.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@8530 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2008-08-25 03:59:28 +00:00
parent de977c8514
commit d62cfce213
1 changed files with 1 additions and 1 deletions

View File

@ -397,7 +397,7 @@ u'\ufffd'
########################
>>> import pickle
>>> q = QueryDict('a=b&c=d')
>>> q1 = pickle.loads(pickle.dumps(q))
>>> q1 = pickle.loads(pickle.dumps(q, 2))
>>> q == q1
True