Changes between Initial Version and Version 1 of Ticket #6769


Ignore:
Timestamp:
Jun 16, 2008, 4:23:51 PM (16 years ago)
Author:
Ramiro Morales
Comment:

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 
     1When using a querydict's .iteritems(), it wraps lists into another list, but not other types, whereas {{{__getitem__}}} doesn't do that:
     2{{{
    33In [1]: from django import http
    44In [4]: qd=http.QueryDict('', mutable=True)
     
    2121foo bar
    2222foo_list2 [1, 2, 3]
     23}}}
Back to Top