diff options
| author | Chris Jerdonek <chris.jerdonek@gmail.com> | 2019-06-19 13:57:15 +0200 |
|---|---|---|
| committer | Carlton Gibson <carlton@noumenal.es> | 2019-06-20 11:48:49 +0200 |
| commit | 533311782fd0c974208490ec9d11da3bbe179dea (patch) | |
| tree | 46aab619f484d736b3c235e96de24189fabb2d4d /docs/ref/request-response.txt | |
| parent | 00169bc36156d4a32546229bf39de91213709eaf (diff) | |
Refs #30565 -- Doc'd HttpResponse.close() method.
Diffstat (limited to 'docs/ref/request-response.txt')
| -rw-r--r-- | docs/ref/request-response.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt index 28e5170595..07dc42900d 100644 --- a/docs/ref/request-response.txt +++ b/docs/ref/request-response.txt @@ -858,6 +858,11 @@ Methods values you used in ``set_cookie()`` -- otherwise the cookie may not be deleted. +.. method:: HttpResponse.close() + + This method is called at the end of the request directly by the WSGI + server. + .. method:: HttpResponse.write(content) This method makes an :class:`HttpResponse` instance a file-like object. |
