Changes between Initial Version and Version 1 of Ticket #25026


Ignore:
Timestamp:
Jun 26, 2015, 4:37:51 AM (9 years ago)
Author:
zauddelig
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25026 – Description

    initial v1  
    1616>>> QueryDict("a[0]=1&a[1]=2")  # the new behavior
    1717<QueryDict: {u'a': [u'1', u'2']}>
     18>>> QueryDict("a[0]=1&a[1]=2")  # proposed to fix behavior
     19<QueryDict: {u'a[0]': [u'1'], u'a[1]': [u'2']}>
     20
    1821}}}
    1922
Back to Top