From b0e5e7b67153e6252bcad959ccb061402e7ecd58 Mon Sep 17 00:00:00 2001 From: Paul Grau Date: Thu, 8 Oct 2020 21:19:51 +0900 Subject: [PATCH] [3.1.x] Fixed #29356 -- Clarified docs for QueryDict.getlist() default. Backport of 855fc06236630464055b4f9ea422c68a07c6d02a from master --- docs/ref/request-response.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt index ca243cbf372..a91e28c34fd 100644 --- a/docs/ref/request-response.txt +++ b/docs/ref/request-response.txt @@ -588,8 +588,8 @@ In addition, ``QueryDict`` has the following methods: .. method:: QueryDict.getlist(key, default=None) 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 - to return a list unless the default value provided isn't a list. + the key doesn't exist and ``default`` is ``None``. It's guaranteed to + return a list unless the default value provided isn't a list. .. method:: QueryDict.setlist(key, list_)