diff options
Diffstat (limited to 'Doc/library/http.client.rst')
-rw-r--r-- | Doc/library/http.client.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/http.client.rst b/Doc/library/http.client.rst index a29e364..be4b28a 100644 --- a/Doc/library/http.client.rst +++ b/Doc/library/http.client.rst @@ -466,7 +466,8 @@ statement. .. method:: HTTPResponse.getheader(name, default=None) Get the contents of the header *name*, or *default* if there is no matching - header. + header. If *default* is an iterator other than a string, then the return + value will be a string consisting of items of the iterator joined by comma. .. method:: HTTPResponse.getheaders() |