Fixed #32057 -- Doc'd HttpResponse.get()/items().

This commit is contained in:
MAHANTH-wq 2020-10-01 11:05:59 +05:30 committed by Mariusz Felisiak
parent 85fa24e3eb
commit 0da212ffbf
1 changed files with 9 additions and 0 deletions

View File

@ -843,11 +843,20 @@ Methods
Returns the value for the given header name. Case-insensitive.
.. method:: HttpResponse.get(header, alternate=None)
Returns the value for the given header, or an ``alternate`` if the header
doesn't exist.
.. method:: HttpResponse.has_header(header)
Returns ``True`` or ``False`` based on a case-insensitive check for a
header with the given name.
.. method:: HttpResponse.items()
Acts like :meth:`dict.items` for HTTP headers on the response.
.. method:: HttpResponse.setdefault(header, value)
Sets a header unless it has already been set.