Opened 17 years ago
Closed 16 years ago
#6769 closed (duplicate)
QueryDict's iteritems() wraps lists in another list
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Uncategorized | Version: | dev |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Accepted | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
When using a querydict's .iteritems(), it wraps lists into another list, but not other types, whereas __getitem__
doesn't do that:
In [1]: from django import http In [4]: qd=http.QueryDict('', mutable=True) In [5]: qd['foo']='bar' In [6]: qd['foo_list']=[] In [7]: qd['foo_list2']=[1,2,3] In [8]: for k,v in qd.iteritems(): print k,v ...: foo_list [[]] foo [u'bar'] foo_list2 [[1, 2, 3]] In [9]: for k in qd: print k, qd[k] ...: foo_list [] foo bar foo_list2 [1, 2, 3]
Change History (3)
comment:1 by , 16 years ago
Description: | modified (diff) |
---|
comment:2 by , 16 years ago
Triage Stage: | Unreviewed → Design decision needed |
---|
comment:3 by , 16 years ago
Resolution: | → duplicate |
---|---|
Status: | new → closed |
Triage Stage: | Design decision needed → Accepted |
Note:
See TracTickets
for help on using tickets.
Dupe of #7331.