mirror of https://github.com/django/django.git
Fixed #29356 -- Clarified docs for QueryDict.getlist() default.
This commit is contained in:
parent
1b32b2f614
commit
855fc06236
|
@ -584,8 +584,8 @@ In addition, ``QueryDict`` has the following methods:
|
||||||
.. method:: QueryDict.getlist(key, default=None)
|
.. method:: QueryDict.getlist(key, default=None)
|
||||||
|
|
||||||
Returns a list of the data with the requested key. Returns an empty list if
|
Returns a list of the data with the requested key. Returns an empty list if
|
||||||
the key doesn't exist and a default value wasn't provided. It's guaranteed
|
the key doesn't exist and ``default`` is ``None``. It's guaranteed to
|
||||||
to return a list unless the default value provided isn't a list.
|
return a list unless the default value provided isn't a list.
|
||||||
|
|
||||||
.. method:: QueryDict.setlist(key, list_)
|
.. method:: QueryDict.setlist(key, list_)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue