Ticket #10184: querydict_test.patch
File querydict_test.patch, 642 bytes (added by , 16 years ago) |
---|
-
tests/regressiontests/httpwrappers/tests.py
401 401 >>> q == q1 402 402 True 403 403 404 ##################################### 405 # Pickling a multi-valued QueryDict # 406 ##################################### 407 >>> import pickle 408 >>> q = QueryDict('a=b&c=d&a=1') 409 >>> q1 = pickle.loads(pickle.dumps(q, 2)) 410 >>> q == q1 411 True 412 404 413 ###################################### 405 414 # HttpResponse with Unicode headers # 406 415 ######################################