Changes between Initial Version and Version 1 of Ticket #25026
- Timestamp:
- Jun 26, 2015, 4:37:51 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25026 – Description
initial v1 16 16 >>> QueryDict("a[0]=1&a[1]=2") # the new behavior 17 17 <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 18 21 }}} 19 22