Browse Source

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

MAHANTH-wq 4 years ago
parent
commit
0da212ffbf
1 changed files with 9 additions and 0 deletions
  1. 9 0
      docs/ref/request-response.txt

+ 9 - 0
docs/ref/request-response.txt

@@ -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.