In an HttpRequest object, the GET and POST attributes are instances of
django.http.QueryDict. QueryDict is a dictionary-like class customized to
deal with multiple values for the same key. This is necessary because some
HTML form elements, notably <select multiple="multiple">, pass multiple
values for the same key.
--
Ticket URL: <https://code.djangoproject.com/ticket/22441>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* status: new => closed
* needs_better_patch: => 0
* resolution: => invalid
* needs_tests: => 0
* needs_docs: => 0
Comment:
Hi,
`QueryDict` is actually importable from `django.http` (that's because it's
imported in `django/http/__init__.py`).
What makes you say that the path in wrong?
Thanks.
--
Ticket URL: <https://code.djangoproject.com/ticket/22441#comment:1>