On Tue, Oct 27, 2009 at 11:36 AM, Jerome Leclanche <adys...@gmail.com> wrote:
> Point still stands, it's impossible to pass a true iterable (1-char
> iterables don't count) to a GET.

What?

>>> from django.http import QueryDict
>>> q = QueryDict('a=1&a=2&a=3&b=4&b=5')
>>> q.getlist('a')
[u'1', u'2', u'3']
>>> q.getlist('b')
[u'4', u'5']

Jacob

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to django-developers@googlegroups.com
To unsubscribe from this group, send email to 
django-developers+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to