Author: mtredinnick
Date: 2008-08-24 22:59:28 -0500 (Sun, 24 Aug 2008)
New Revision: 8530
Modified:
django/trunk/tests/regressiontests/httpwrappers/tests.py
Log:
Improved the regression test in [8460] a bit, based on some information from
John Huddleston in #7496.
Modified: django/trunk/tests/regressiontests/httpwrappers/tests.py
===================================================================
--- django/trunk/tests/regressiontests/httpwrappers/tests.py 2008-08-25
03:55:47 UTC (rev 8529)
+++ django/trunk/tests/regressiontests/httpwrappers/tests.py 2008-08-25
03:59:28 UTC (rev 8530)
@@ -397,7 +397,7 @@
########################
>>> import pickle
>>> q = QueryDict('a=b&c=d')
->>> q1 = pickle.loads(pickle.dumps(q))
+>>> q1 = pickle.loads(pickle.dumps(q, 2))
>>> q == q1
True
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---