Opened 15 years ago

Closed 15 years ago

Last modified 15 years ago

#10679 closed (worksforme)

SessionBase loses multiple values for list when encoding QueryDict objects

Reported by: tymofiy Owned by: nobody
Component: contrib.sessions Version: 1.0
Severity: Keywords:
Cc: akhavr@… Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The testcase:

from django.http import QueryDict
from django.conf import settings
settings.configure(DEFAULT_CHARSET='UTF-8')
q = QueryDict('city=1&city=2')
q
# <QueryDict: {u'city': [u'1', u'2']}>
from django.contrib.sessions.backends.base import SessionBase
s = SessionBase()
str = s.encode(q)
s.decode(str)
s
# <QueryDict: {u'city': [u'2']}>

Reproducable in 1.0 and Trunk.

Change History (3)

comment:1 by Alex Gaynor, 15 years ago

This looks like what was fixed in r10240, what version are you testing against?

comment:2 by Alex Gaynor, 15 years ago

Resolution: worksforme
Status: newclosed

I can't reproduce: http://dpaste.com/21804/

comment:3 by tymofiy, 15 years ago

Version: SVN1.0

Actually yes, works fine in Trunk.

Note: See TracTickets for help on using tickets.
Back to Top