Changes between Initial Version and Version 1 of Ticket #6769
- Timestamp:
- Jun 16, 2008, 4:23:51 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6769 – Description
initial v1 1 When using a querydict's .iteritems(), it wraps lists into another list, but not other types, whereas __getitem__doesn't do that:2 1 When using a querydict's .iteritems(), it wraps lists into another list, but not other types, whereas {{{__getitem__}}} doesn't do that: 2 {{{ 3 3 In [1]: from django import http 4 4 In [4]: qd=http.QueryDict('', mutable=True) … … 21 21 foo bar 22 22 foo_list2 [1, 2, 3] 23 }}}