Ticket #10184: querydict_test.patch

File querydict_test.patch, 642 bytes (added by Andre LeBlanc <andrepleblanc@…>, 16 years ago)

QueryDict test

  • tests/regressiontests/httpwrappers/tests.py

     
    401401>>> q == q1
    402402True
    403403
     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
     411True
     412
    404413######################################
    405414# HttpResponse with Unicode headers  #
    406415######################################
Back to Top