so maybe we should add to the documentation of https://docs.djangoproject.com/en/2.0/ref/request-response/#django.http.QueryDict *If want to get multiple values for the same key, use QueryDict.getlist(key, default=None) instead of QueryDict.get(key, default=None)*
add example to https://docs.djangoproject.com/en/2.0/ref/request-response/#django.http.QueryDict.getlist *>>> q = QueryDict('a=1&a=2&c=3')* *>>> q.get('a')* *'3'* *>>> q.getlist('a')* *['1', '2', '3']* -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-developers. To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/d7cf3d32-752b-4da7-8079-fc8d22e36a71%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
